JSFiddle - React, Tailwind, and code Playground
by gionaf
HTML
<img src="http://i444.photobucket.com/albums/qq165/junah42/Snark/idiocracy10qg3.png">
CSS
img {
max-width:100%;
-webkit-transition: -webkit-transform 3s ease;
-moz-transition: -moz-transform 3s ease;
-ms-transition: -ms-transform 3s ease;
-o-transition: -o-transform 3s ease;
transition: transform 3s ease;
}
img:hover {
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}