JSFiddle - React, Tailwind, and code Playground
by adamh
HTML
<img width="100" height="100" src="http://placehold.it/100x100" />
CSS
body {
position: relative;
}
img {
position: absolute;
top: 50px;
left: 50px;
width: 100px;
height: 100px;
}
JavaScript
$('img').click(function(){
$(this).animate({
top: '0px',
left: '0px',
width: '100px',
height: '100px',
opacity: 0
});
});