DEV Community

Robson Muniz
Robson Muniz

Posted on

2

🚀Animated Loading Spinner | HTML & CSS💯

Learn how to build an Animated Loading Spinner Tutorial using HTML and CSS !

Source Code:

Content and Structure:

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Animated Loading Spinner</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>

<div class="spinner">
    Loading...
    <div class="spinner-sector spinner-sector-red"></div>
    <div class="spinner-sector spinner-sector-blue"></div>
    <div class="spinner-sector spinner-sector-green"></div>
    <div class="spinner-sector spinner-sector-orange"></div>
</div> 

</body>
</html>
Enter fullscreen mode Exit fullscreen mode

Layout and Design

*{
   box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    display: grid;
    place-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.spinner{
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    overflow: hidden;
    position: relative;
    animation: text-fading 2s ease-in-out infinite alternate;
}

@keyframes text-fading {
    0%{
        color: rgba(0,0,0,1);
    }
    50%{
        color: rgba(0,0,0,0.5);
    }
    100%{
        color: rgba(0,0,0,0.1);

    }
}

.spinner-sector{
    position: absolute;
    width: 100%;
    height: 100%;
    /*background: red;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 15px solid transparent;
    mix-blend-mode: overlay;
    animation: rotate var(--duration) var(--timing) infinite;
}

@keyframes rotate {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

.spinner-sector-red{
    border-top-color: #cf2c20;
    --duration: 1.5s;
    --timing: ease-in-out;
}

.spinner-sector-blue{
    border-left-color: #2454df;
    --duration: 2s;
    --timing: ease-in;
}

.spinner-sector-green{
    border-right-color: #258342;
    --duration: 2.5s;
    --timing: ease-out;
}

.spinner-sector-orange{
    border-bottom-color: #f0a204;
    --duration: 3s;
    --timing: ease-in-out;
}
Enter fullscreen mode Exit fullscreen mode

🛴Follow us for more content like this:
https://bit.ly/WDevMadeEasy

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay