پیشنمایش زنده
کد HTML
<div class="loader"></div>
کد CSS
.loader {
width: calc(90px / 0.707);
height: 20px;
background: repeating-linear-gradient(135deg, #766DF4 0 15px,#0000 0 20px) left top,
repeating-linear-gradient( 45deg, #766DF4 0 15px,#0000 0 20px) left bottom;
background-size: 300% 50%;
background-repeat: no-repeat;
animation: i4 2s infinite linear;
}
@keyframes i4 {
100% {
background-position: top right,bottom right
}
}