JSFiddle - React, Tailwind, and code Playground
HTML
<img id="imgrotate" src="http://pursuitnotes.com/wp-content/uploads/2012/07/Einstein-Funny-Face.jpg" width="350" height="350" alt="Einstein-Funny-Face">
JavaScript
$(document).ready(function() {
$("img").on({
"mouseenter" : function() {
this.src = "http://www.dorkbotswiss.org/wp-content/uploads/2014/08/funnny-2.jpg";},
"mouseleave" : function() {
this.src="http://pursuitnotes.com/wp-content/uploads/2012/07/Einstein-Funny-Face.jpg";}
});
});