galaxy/loaders/LeonKohli_ordinary-rat-31.html

38 lines
No EOL
665 B
HTML

<div class="loader">
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
</div>
<style>
/* From Uiverse.io by LeonKohli - Tags: gradient, loader, rounded, gradients */
.loader {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.bubble {
width: 20px;
height: 20px;
border-radius: 50%;
background-image: linear-gradient(to right, #ff6b81, #ff9a44);
margin: 0 5px;
animation: bubbleAnimation 1.5s ease-in-out infinite;
}
@keyframes bubbleAnimation {
0%,
100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(2);
opacity: 0.5;
}
}
</style>