JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://jqueryrotate.googlecode.com/svn/trunk/jQueryRotate.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<img src="http://1.bp.blogspot.com/-dVz_71071d4/Ubp6rVJtJvI/AAAAAAAA6DU/-5I0LPsyL5s/s1600/1.jpg" style="width:300px;height:300px" id="image">

CSS

body {
    background:#000
}

JavaScript

$(document).ready(function() {

 var rotation = function (){
   $("#image").rotate({
      angle:90, 
      animateTo:360, 
      duration:100000,
      callback: rotation,
      easing: function (x,t,b,c,d){
          return c*(t/d)+b;
      }
   });
}
rotation()
});