<div class="loader"></div>
<div class="loader alt"></div>
.loader {
height: 47px;
aspect-ratio: 5;
--c: #000 90deg,#0000 0;
background:
conic-gradient(from 135deg at top ,var(--c)),
conic-gradient(from -45deg at bottom,var(--c)) 12.5% 100%;
background-size: 20% 50%;
background-repeat: repeat-x;
animation: l1 .8s infinite linear;
}
.alt {
animation-direction: reverse;
}
@keyframes l1{
to {background-position: 25% 0,37.5% 100%}
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-content: center;
gap: 20px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.