galaxy/loaders/jack0237_modern-quail-99.html

52 lines
No EOL
816 B
HTML

<div class="loader">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<style>
/* From Uiverse.io by jack0237 - Tags: */
.loader {
display: flex;
}
.loader .dot {
height: 20px;
width: 20px;
border-radius: 50%;
border: 2px solid #e8e8e8;
background: #16b0c1;
animation: jump 0.8s ease-in-out infinite alternate;
}
@keyframes jump {
100% {
background: #661e92;
transform: translateY(-3rem) scale(1.9);
}
}
.loader .dot:nth-child(1) {
animation-delay: 0.1s;
}
.loader .dot:nth-child(2) {
animation-delay: 0.2s;
}
.loader .dot:nth-child(3) {
animation-delay: 0.3s;
}
.loader .dot:nth-child(4) {
animation-delay: 0.4s;
}
.loader .dot:nth-child(5) {
animation-delay: 0.5s;
}
</style>