JSFiddle - React, Tailwind, and code Playground
by Robbie Wxyz
HTML
<div class="slide-right" style="width:100px;height:100px;background-color:red;"></div>
JavaScript
$(".slide-right")
.css("margin-right",-$(this).width())
.delay(400)
.animate({
marginRight:0
}, 900); // This one doesn't work.
$(".slide-right")
.css("margin-left",$(this).width())
.delay(1400)
.animate({
marginLeft:0
}, 900); // This one does work!