JSFiddle - React, Tailwind, and code Playground
by toshimaru
HTML
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
CSS
div {
width: 100px;
height: 100px;
background-color: #aaa;
}
JavaScript
var animation = $('div').animate({ "margin-left": "300px" }, 1000);
var one = $.when(animation).then(function() {
$('div').css({ "margin-left": 0 });
});