JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<div class="imgContainer"></div>
CSS
.imgContainer {
background: url("http://placekitten.com/g/200/300") no-repeat top left;
width: 200px;
height: 200px;
-webkit-animation: ani 10s infinite;
animation: ani 10s infinite;
}
@-webkit-keyframes ani {
0% { background-position: top left; }
50% { background-position: bottom left; }
100% { background-position: top left; }
}
@keyframes ani {
0% { background-position: top left; }
50% { background-position: bottom left; }
100% { background-position: top left; }
}