JSFiddle - React, Tailwind, and code Playground
HTML
<div id="conteneur">
Lorem Ipsum Sit Dolor Amet
</div><!-- Fin du div conteneur-->
CSS
#conteneur{
background: #111 url("http://tinyurl.com/28fvq8l") no-repeat 0 0;
height: 500px;
color: #fff;
padding: 10px;
}
JavaScript
$("#conteneur").animate(
{backgroundPosition:("500px 0")},
{duration: 1500}
);