JSFiddle - React, Tailwind, and code Playground
by envira
HTML
<div></div><br/>
<button>toggle</button>
CSS
body { margin: 50px; }
div { height: 50px; width: 50px; background: red; }
JavaScript
$('button').toggle(function(){
$('div').animate({'width': '100px'});
}, function(){
$('div').animate({'width': '50px'});
});