mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
59 lines
884 B
HTML
59 lines
884 B
HTML
<div class="loader3">
|
|
<div class="circle1"></div>
|
|
<div class="circle1"></div>
|
|
<div class="circle1"></div>
|
|
<div class="circle1"></div>
|
|
<div class="circle1"></div>
|
|
</div>
|
|
|
|
<style>
|
|
/* From Uiverse.io by Satwinder04 - Tags: loader */
|
|
.loader3 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.circle1 {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 50%;
|
|
margin: 0 10px;
|
|
background-color: #333;
|
|
animation: circle1 1s ease-in-out infinite;
|
|
}
|
|
|
|
.circle1:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.circle1:nth-child(3) {
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
.circle1:nth-child(4) {
|
|
animation-delay: 0.6s;
|
|
}
|
|
|
|
.circle1:nth-child(5) {
|
|
animation-delay: 0.8s;
|
|
}
|
|
|
|
@keyframes circle1 {
|
|
0% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.5);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
</style>
|