Use pure CSS to create a pulsating loader effect source code

Use pure CSS to create a pulsating loader effect source code

Effect Preview

Press the "Click to Preview" button on the right to preview on the current page, and click the link to preview in full screen.

https://codepen.io/comehope/pen/wYvGwr

Interactive Video

This video is interactive, you can pause the video at any time and edit the code in the video.

Please use chrome, safari, edge to open and watch.

https://scrimba.com/p/pEgDAM/cnMgQTr

Source code download

Please download the full source code of the Daily Front-end Practice Series from GitHub:

https://github.com/comehope/front-end-daily-challenges

Code Interpretation

Define DOM, the container contains 10 child elements:

<div class="loader">
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
    <span></span>
</div>

Center display:

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#eee 70%, pink);
}

Set the container style to a circle with a pink background and stroke:

.loader {
    width: 6em;
    height: 6em;
    padding: 3em;
    font-size: 10px;
    background-color: pink;
    border-radius: 50%;
    border: 0.8em solid hotpink;
}

Set the layout of child elements to horizontal tiling:

.loader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

To set the style of a child element:

.loader > span {
    width: 0.5em;
    height: 50%;
    background-color: deeppink;
}

Add animation effects to child elements:

.loader > span {
    transform: scaleY(0.05) translateX(-0.5em);
    animation: span-animate 1.5s infinite ease-in-out;
}
@keyframes span-animate {
    0%, 100% {
        transform: scaleY(0.05) translateX(-0.5em);
    }
    15% {
        transform: scaleY(1.2) translateX(1em);
    }
    90%, 100% {
        background-color: hotpink;
    }
}

Set the sub-element index to let the sub-elements play animations in sequence:

.loader > span {
    animation-delay: calc(var(--n) * 0.05s);
}
.loader > span:nth-child(1) { --n: 1; }
.loader > span:nth-child(2) { --n: 2; }
.loader > span:nth-child(3) { --n: 3; }
.loader > span:nth-child(4) { --n: 4; }
.loader > span:nth-child(5) { --n: 5; }
.loader > span:nth-child(6) { --n: 6; }
.loader > span:nth-child(7) { --n: 7; }
.loader > span:nth-child(8) { --n: 8; }
.loader > span:nth-child(9) { --n: 9; }
.loader > span:nth-child(10) { --n: 10; }

Add container animation to enhance the pulsation effect:

.loader {
    animation: loader-animate 1.5s infinite ease-in-out;
}
@keyframes loader-animate {
    45%, 55% {
        transform: scale(1.05);
    }
}

Summarize

The above is the source code of creating a pulsating loader effect using pure CSS introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  The whole process of configuring reverse proxy locally through nginx

>>:  Example of creating table statements for user Scott in MySQL version of Oracle

Recommend

Docker Machine in-depth explanation

Differences between Docker and Docker Machine Doc...

IE6/7 is going to be a mess: empty text node height issue

Preface: Use debugbar to view document code in iet...

WeChat applet tab left and right sliding switch function implementation code

Effect picture: 1. Introduction Your own applet n...

MySQL 8.X installation tutorial under Windows

I had been using MySQL 5.7 before, but because My...

Implementation of nginx proxy port 80 to port 443

The nginx.conf configuration file is as follows u...

Docker setting windows storage path operation

When installing Docker on Windows 10, after selec...

How to install mysql6 initialization installation password under centos7

1. Stop the database server first service mysqld ...

HTML is the central foundation for the development of WEB standards

HTML-centric front-end development is almost what ...

How to solve the abnormal error ERROR: 2002 in mysql

Recently, an error occurred while starting MySQL....

Summary of Button's four Click response methods

Button is used quite a lot. Here I have sorted ou...

HTML+CSS+JavaScript to create a simple tic-tac-toe game

Table of contents Implementing HTML Add CSS Imple...

Docker's four network types principle examples

Four network types: None: Do not configure any ne...

Detailed explanation of scheduled tasks and delayed tasks under Linux

at at + time at 17:23 at> touch /mnt/file{1..9...

Example of using CSS to achieve semi-transparent background and opaque text

This article introduces an example of how to use ...