JSFiddle - React, Tailwind, and code Playground
HTML
<div id="psy"></div>
CSS
#psy{
margin:30px 0 0 30px;
width:110px;
height: 30px;
display:inline-block;
background: url('http://s.ytimg.com/yts/img/doodles/youtube_yoodle_psy_110x30-vflOeb25k.png') no-repeat 0 0;
}
JavaScript
var psy = document.getElementById('psy');
var x = 0;
setInterval(function(){
x -= 110;
psy.style.backgroundPosition = x+'px 0';
if(x <= -5720) x = 0;
},60)