JSFiddle - React, Tailwind, and code Playground

by dipaks2011

HTML

<div id="clickme">
  Click here
</div>
<img id="book" src="http://www.larrydewitt.net/SSinGAPE/rareicon.gif" alt="" width="100" height="123"
  style="position: relative; left: 10px;" />

JavaScript

function incre(){
    alert('hi');
};

$('#clickme').click(function() {
  $('#book').animate({
    opacity: 0.25,
    left: '+=50',
    height: 'toggle'
  }, 5000, function() {
    // Animation complete.
      incre();
  });
});