JSFiddle - React, Tailwind, and code Playground
HTML
<div id="logo">
<img src="http://sstatic.net/stackoverflow/img/apple-touch-icon.png" alt="Stack Overflow" />
</div>
JavaScript
$(document).ready(function(){
$('#logo').click(function(){
$(this).css("opacity","0").delay(2000).animate({opacity: 1}, 'slow');
});
});