JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test"></div>

CSS

#test {
    width: 100px;
    height: 100px;
    background-color: #C00;
    margin-left: 500px;   
}

JavaScript

$("#test").animate({
    'marginLeft': '-=450px'
}, 500);