JSFiddle - React, Tailwind, and code Playground
HTML
<div id="flying-michou"></div>
CSS
@keyframes wink {
from { background-position: 0px; }
to { background-position: -156px; }
}
#flying-michou {
width: 39px;
height: 33px;
background-image: url("http://i.imgur.com/hSkYK.png");
animation: wink 0.5s steps(4, end) infinite;
}