JSFiddle - React, Tailwind, and code Playground
by deathhell
HTML
<div class="cat"></div>
CSS
.cat{
width:350px;
height:380px;
margin:2% auto;
background: url(http://i.imgur.com/Bu9JKiB.png);
animation: play .8s steps(9) infinite;
}
@keyframes play {
100% { background-position: -3150px; }
}