JSFiddle - React, Tailwind, and code Playground

HTML

<p>Hover to see it rotate!</>

<img src="http://designshack.co.uk/wp-content/uploads/ambigram-13.jpg" />

CSS

img {
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    margin: 50px;
}

img:hover {
    -webkit-transform: rotate(180deg) ;
-moz-transform: rotate(180deg) ;
-o-transform: rotate(180deg) ;
}