JSFiddle - React, Tailwind, and code Playground
HTML
<div class="front-wheel main_wheel animated bounceInDown">
<div class="front-wheel-1"></div>
</div>
CSS
.main_wheel .front-wheel-1 {
width: 398px;
height: 401px;
background-image: url('http://wooos.ru/tires-sprite.png');
background-position: center 0;
background-size: inherit;
animation: play 0.8s steps(35) infinite;
}
@keyframes play {
100% { background-position: center -14517px; }
}