New Animation in Html and css on April 12, 2022 Get link Facebook X Pinterest Email Other Apps New Animation in Html and css Html part <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Glassmorphism ainmation</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="loader"> <span></span> <span></span> <span></span> </div> </body> </html> CSS part *,::after,::before{ margin: 0; padding: 0; box-sizing: border-box; } body{ min-height: 100vh; background: radial-gradient(blue,black); display: flex; justify-content: center; /* align-items: center; */ margin-top: 100px; } .loader{ position: relative; width: 150px; height: 150px; } .loader span{ position: absolute; width: 100%; height: 100%; border-radius: 50%; } .loader span:nth-child(1){ background:rgba(253, 253, 253, 0.1); backdrop-filter: blur(100px); border-top: 0.25px solid rgba(255, 255, 255, 0.5); border-left: 0.25 solid rgba(255, 255, 255, 0.5); z-index: 2; } .loader span:nth-child(2){ background: rgb(255, 13, 13); animation: animate 4s ease-in-out infinite; } .loader span:nth-child(3){ background:rgb(8, 0, 235); animation: animate 4s ease-in-out infinite; animation-delay: -2s; border-radius: 0; } @keyframes animate { 0%{ transform: translate(-150px , 50px ) scale(0.4) rotate(0deg); z-index: 1; } 50%{ transform: translate(150px , -50px ) scale(0.4) rotate(180deg); z-index: 1; } 50.00001%{ transform: translate(150px , -50px ) scale(0.4) rotate(180deg); z-index: 3; } 100%{ transform: translate(-150px , 50px ) scale(0.4) rotate(360deg); z-index: 3; } } Comments
Comments
Post a Comment