there is an animation
@keyframes sprite-x { 0% { background-position-x: 0; } 100% { background-position-x: -8192px;} } .element { width: 1638px; height: 473px; background-image: url('image'); background-repeat: none; animation: sprite-x 0.5s steps(6) infinite, } It is necessary that about 90% of this animation be re-launched, but the first one is not interrupted at the same time, but it plays until the end, and then it stops. And so endlessly: the same animation runs 90% without stopping the previous one, until the last one plays to the end.
