Created
August 19, 2024 03:24
-
-
Save iamdanre/e612199b1562aaaf098406beb2aca2f3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
body { | |
background: #121212 | |
} | |
#loader { | |
width: 500px; | |
position: absolute; | |
text-align: center; | |
left: calc(50% - 250px); | |
top: calc(50% - 10px) | |
} | |
#loader .square { | |
display: inline-block; | |
height: 10px; | |
width: 10px; | |
margin: 10px; | |
position: relative; | |
box-shadow: 0 0 20px rgba(0, 0, 0, .3); | |
animation: bouncer cubic-bezier(.455, .03, .515, .955) .75s infinite alternate | |
} | |
#loader .square:nth-child(5n+1) { | |
background: #0F9; | |
animation-delay: 0 | |
} | |
#loader .square:nth-child(5n+2) { | |
background: #0CF; | |
animation-delay: calc(0s + (.1s * 1)) | |
} | |
#loader .square:nth-child(5n+3) { | |
background: #93F; | |
animation-delay: calc(0s + (.1s * 2)) | |
} | |
#loader .square:nth-child(5n+4) { | |
background: #F66; | |
animation-delay: calc(0s + (.1s * 3)) | |
} | |
#loader .square:nth-child(5n+5) { | |
background: #FFF35C; | |
animation-delay: calc(0s + (.1s * 4)) | |
} | |
@keyframes bouncer { | |
to { | |
transform: scale(1.75) translateY(-20px) | |
} | |
} | |
</style> | |
</head> | |
<body style="width:100%;"> | |
<div id="loader"> | |
<div class="square"></div> | |
<div class="square"></div> | |
<div class="square"></div> | |
<div class="square"></div> | |
<div class="square"></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment