Pulsing loader – A step-by-step guide

Tutorial on how to create a beautiful pulse loader – CSS & HTML only.

HTML

For HTML we need a container with 4 divs. We’ll add “loader” class to a container.

<div class=”loader”>
<div></div>
<div>&lt…


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Designyff

Tutorial on how to create a beautiful pulse loader - CSS & HTML only.

Pulsing loader

HTML

For HTML we need a container with 4 divs. We'll add "loader" class to a container.

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

CSS

For CSS, first we'll style the "loader" element.
We'll set position to relative and width and height to 10 rem.

.loader {
    position: relative;
    width: 10rem;
    height: 10rem;
}

Now we'll style the divs inside the "loader" element.
We'll set position to absolute and border to 10px solid light green with 50% radius.
These elements represent the moving lines. We have 4 of them.

.loader div {
    position: absolute;
    border: 10px solid rgb(151, 197, 12);
    border-radius: 50%;
    animation: load 2s ease-out infinite;
}

Now we'll create a "load" animation for our 4 lines.
By changing top, left, width and height properties, we'll create expanding effect.
And by adding the opacity property to 1 at 5% and back to 0 at 100%, we'll create a nice disappearing effect.


@keyframes load {
    0% {
        top: 4rem;
        left: 4rem;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 4rem;
        left: 4rem;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 4rem;
        left: 4rem;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 8rem;
        height: 8rem;
        opacity: 0;
    }
}

Now we'll simply add the animation to all of our div elements.
We'll set it to 2 second duration, infinite, ease out.

.loader div {
    position: absolute;
    border: 10px solid rgb(151, 197, 12);
    border-radius: 50%;
    animation: load 2s ease-out infinite; /* Added animation */
}

As we have 4 lines, we need to set the beginning of the animation at different time to each element.
For the First element, animation will begin at 0, so we won't change anything.
Now we'll select the second element using the nth child selector and passing in number "2". We'll set delay to -0.5 seconds.
For third element, we'll set animation delay to -1 second.
And for the last element, we'll set delay to -1.5 second.

.loader div:nth-child(2) {
    animation-delay: -0.5s;
}
.loader div:nth-child(3) {
    animation-delay: -1s;
}
.loader div:nth-child(4) {
    animation-delay: -1.5s;
}

And that's it. Simple, huh?

You can find video tutorial and full code here.

Thanks for reading. ❤️


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Designyff


Print Share Comment Cite Upload Translate Updates
APA

Designyff | Sciencx (2022-10-15T10:23:27+00:00) Pulsing loader – A step-by-step guide. Retrieved from https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/

MLA
" » Pulsing loader – A step-by-step guide." Designyff | Sciencx - Saturday October 15, 2022, https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/
HARVARD
Designyff | Sciencx Saturday October 15, 2022 » Pulsing loader – A step-by-step guide., viewed ,<https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/>
VANCOUVER
Designyff | Sciencx - » Pulsing loader – A step-by-step guide. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/
CHICAGO
" » Pulsing loader – A step-by-step guide." Designyff | Sciencx - Accessed . https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/
IEEE
" » Pulsing loader – A step-by-step guide." Designyff | Sciencx [Online]. Available: https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/. [Accessed: ]
rf:citation
» Pulsing loader – A step-by-step guide | Designyff | Sciencx | https://www.scien.cx/2022/10/15/pulsing-loader-a-step-by-step-guide/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.