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 0px;
	background-size: inherit;
	-webkit-animation: play .8s steps(10) 1;
	   -moz-animation: play .8s steps(10) 1;
	    -ms-animation: play .8s steps(10) 1;
	     -o-animation: play .8s steps(10) 1;
	        animation: play .8s steps(10) 1;
}
@-webkit-keyframes play {
   from { background-position: center 0; }
     to { background-position: center -3731px; }
}

@-moz-keyframes play {
	from { background-position: center 0; }
	  to { background-position: center -3731px; }
}

@-ms-keyframes play {
	from { background-position: center 0; }
	  to { background-position: center -3731px; }
}

@-o-keyframes play {
	from { background-position: center 0; }
	  to { background-position: center -3731px; }
}

@keyframes play {
	from { background-position: center 0; }
	  to { background-position: center -3731px; }
}