JSFiddle - React, Tailwind, and code Playground
by fenderistic
HTML
<button id="go">» Run</button>
<img src="http://nyquil.org/uploads/IndianHeadTestPattern16x9.png" alt="Smiley face" height="42" width="42" id="block">
JavaScript
$("#go").click(function () {
$("#block").animate({
width: "70%",
height: "200%"
}, 1500);
});