JSFiddle - React, Tailwind, and code Playground

HTML

<div class="one">&nbsp;</div>

CSS

.one {
    margin: 20px;
    min-height: 60px;
    max-width: 220px;
    background-repeat: no-repeat;
    background-color: #FFC;
    
    background-image: url(https://developer.mozilla.org/samples/cssref/background-position/starsolid.gif);
    background-position: right bottom;
}

JavaScript

// click on the box to watch the magic
$('.one').click(function() {
    $(this).animate({'background-position-x': '0%'})
});