JSFiddle - React, Tailwind, and code Playground
HTML
<img class="rotate-img" src="https://appharbor.com/assets/images/stackoverflow-logo.png" />
CSS
.rotate-img {
transition: scale 1.25s;
}
body:hover .rotate-img {
transform: rotate(90deg) scale(1.25); /* Fx 16+, IE 10+ */
transform-origin: left center;
margin: 10% 0 0 20%;
}