JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://beneposto.pl/jqueryrotate/js/jQueryRotateCompressed.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<img src="http://static1.squarespace.com/static/5761c005d482e9e9eacb335d/t/57900e429de4bb65def6209d/1469058702942/?format=1500w" id="image">

CSS

#image{
  margin:200px 200px;
}

JavaScript

var value = 0
$("#image").rotate({ 
   bind: 
     { 
        click: function(){
            value -=15;
            $(this).rotate({ animateTo:value})
        }
     } 
   
});