JSFiddle - React, Tailwind, and code Playground
by Cone
HTML
<div></div><div></div><div></div>
CSS
div {
float:left;width:100px;height:80px;background:#f4f4f4;margin-right:5px;
}
JavaScript
$('div').hover(function(){
$(this).stop().animate({"width" : 200 }).siblings().stop().animate({ 'width' : 100 });
},function(){
$('div').animate({ "width" : 100 });
});