JSFiddle - React, Tailwind, and code Playground
HTML
<div style="height: 50px;">
<div id="clickme">
Click here
</div>
<img style="position: relative;" id="book" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" alt="" width="215" height="53" style="z-index: 999;" />
</div>
<div>
This is some content that goes here.
</div>
JavaScript
$('#book').hide();
$('#clickme').click(function() {
$('#book').slideToggle('slow', function() {
// Animation complete.
});
});