پیشنمایش زنده
کد HTML
<div class="loader"></div>
کد CSS
.loader {
height: 5cm;
width: 5cm;
border-radius: 1rem;
/* border: 1px solid #0a7cbe; */
box-shadow: inset 0 0 0 #0a7cbe;
animation: load 4s ease infinite;
}
@keyframes load {
0% {
box-shadow: inset -5cm -2.5cm 0 #0a7cbe;
}
25% {
box-shadow: inset 5cm -2.5cm 0 #0a7cbe;
}
25.01% {
box-shadow: inset 2.5cm -5cm 0 #0a7cbe;
}
50% {
box-shadow: inset 2.5cm 5cm 0 #0a7cbe;
}
50.01% {
box-shadow: inset 5cm 2.5cm 0 #0a7cbe;
}
75% {
box-shadow: inset -5cm 2.5cm 0 #0a7cbe;
}
75.01% {
box-shadow: inset -2.5cm 5cm 0 #0a7cbe;
}
100% {
box-shadow: inset -2.5cm -5cm 0 #0a7cbe;
}
}