1
I need a bar that goes from 0 to 70% and that doesn’t go back to 0 after reaching 70, you can’t start the cycle again, you have to stop when you reach the maximum number.~
@keyframes site {
from { width: 0 }
to { width: 73% }
}
.siteload {
background: #E7E7E7;
position: relative;
height: 25px;
width: 80%;
left: 45px;
border-radius: 6px;
}
.siteload::after {
border-radius: 6px;
animation: site 5s infinite ease-in-out;
background: rgba(247,170,88,1);
content: '73%';
position: absolute;
left: 0; top: 0; bottom: 0;
}
Take off the
infinite
of `Animation. That’s what makes it repeat– I_like_trains