JSFiddle - React, Tailwind, and code Playground

by Сергей Тарасевич

HTML

<div id="clickme">sdsdasda</div>

<div id="book">sdsdadsfsdfsdfsdfsdfsda</div>

CSS

#foo {
    height:20px;
    background:#ccc;
}
#ball {
    width:60px;
    height:20px;
    background:#c55;
}

JavaScript

$('#clickme').click(function() {
  $('#book').animate({
    duration: 5000, 
    specialEasing: {
      opacity: '0'
    }
  });
});