JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
CSS
div {
width: 50px;
height: 100px;
float: left;
margin: 5px;
background: rgb(255,140,0);
cursor: pointer;
}
JavaScript
$( "div" ).click(function() {
if ( $(this).height() != 50)
$( this ).animate({ height: 50 }, 1000 );
else
$( this ).animate({ height: 100 }, 1000 );
});