پیشنمایش زنده
کد HTML
<div class="load">
<div class="progress"></div>
<div class="progress"></div>
<div class="progress"></div>
</div>
کد CSS
.load {
display: flex;
border-radius: 50%;
flex-direction: row;
}
.progress {
width: 2em;
height: 2em;
margin: 0.4em;
scale: 0;
border-radius: 50%;
background: rgb(255, 255, 255);
animation: loading_492 2s ease infinite;
animation-delay: 1s;
}
@keyframes loading_492 {
50% {
scale: 1;
}
}
.progress:nth-child(2) {
animation-delay: 1.3s;
}
.progress:nth-child(3) {
animation-delay: 1.7s;
}