<!-- From Uiverse.io by jack0237 --> <div class="loader"> <div class="dot"></div> <div class="dot"></div> <div class="dot"></div> <div class="dot"></div> <div class="dot"></div> </div>
/* From Uiverse.io by jack0237 */ .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; }
Please log in to join the conversation
Loading Comments