JSFiddle - React, Tailwind, and code Playground

by Rafael Nepomuceno

HTML

<div id="logo"> </div>

CSS

@-webkit-keyframes slide {
    from{
        background-position:575px;
    }
    to{
        background-position:1725px;
    }
}

#logo{
    width:575px;
    height:200px;
    background:url(http://www.psdgraphics.com/wp-content/uploads/2009/02/abstract-background.jpg);
    -webkit-animation: slide 10s linear infinite;
}