CSS Gradient loader

Baby Yoda

Contributor
Poruka
21.753
Ako je nekome potreban "kul" loader sa različitim bojama Evo malo koda:

HTML:
HTML:
<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <link rel="stylesheet" href="style.css">

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

</div>

   </body>
</html>

CSS:
CSS:
body {
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    background:#050210;
}
.loader {
    position:relative;
    width:200px;
    height:200px;
    border-radius:50%;
    background: linear-gradient(#14ffe9,#ffeb3b,#ff00e0);
    animation: animate 0.5s linear infinite;
}
@keyframes animate
{
    0%
    {
        transform: rotate(0deg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.loader span{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background: linear-gradient(#14ffe9,#ffeb3b,#ff00e0);
}
.loader span:nth-child(1) {
    filter:blur(10px);
}
.loader span:nth-child(2) {
    filter:blur(20px);
}
.loader span:nth-child(3) {
    filter:blur(30px);
}
.loader span:nth-child(4) {
    filter:blur(60px);
}
.loader:after {
    content: '';
    position:absolute;
    top:20px;
    left:20px;
    right:20px;
    bottom:20px;
    background:#050210;
    border-radius:50%;
}

Fiddle: https://jsfiddle.net/CodeIllusionist/vk3c8fmo/1/
 
pa samo to ne valja ;)
bruh GIF
 

Back
Top