JSFiddle - React, Tailwind, and code Playground

by secondfre

HTML

<div id="test">

</div>

CSS

html {background: black;}
#test {
    height: 200px; width: 200px;
    background: url('http://lorempixum.com/400/200/city/1') repeat;
    
    -webkit-animation: slider 5s infinite linear;
}

@-webkit-keyframes slider {
    0% {background-position: 0px 0px}
    100% {background-position: 0px 200px}
}