JSFiddle - React, Tailwind, and code Playground
by mubarakpasha
HTML
<img src="https://www.google.com//images/icons/product/chrome-48.png" id="aimg" class="big" />
CSS
.small {-webkit-transform: scale(0.5); -moz-transform: scale(0.5); -o-transform: scale(0.5);-webkit-transition: all 2s linear; -moz-transition: all 2s linear; -o-transition: all 2s linear;}
.big {-webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1);-webkit-transition: all 2s linear; -moz-transition: all 2s linear; -o-transition: all 2s linear;}
JavaScript
$("#aimg").on('click', function() {
$(this).toggleClass('small big');
});