JSFiddle - React, Tailwind, and code Playground

by Thibaud Colas

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;
}