JSFiddle - React, Tailwind, and code Playground
by Murat Kezli
HTML
<div class="button">Click</div>
<div class="box">Im a box</div>
CSS
.box {
height:100px;
width:100px;
background-color:blue;
}
JavaScript
$(document).ready(function(e) {
$('div.button').on('click', function()
{
$('div.box').animate(
{ width: 0 },
{ duration: 2000, easing: 'easeInOutBack' });
});
});