JSFiddle - React, Tailwind, and code Playground
by nchaves
HTML
<img id="down" src="http://i.imgur.com/ZpO1Mjx.gif">
<img id="up" src="http://i.imgur.com/Y9I0Gxf.gif">
<p>Press any key or click</p>
CSS
#up { display:none; }
p { font-family:Helvetica; color:lightgray; }
body { text-align:center; }
JavaScript
$(document).bind('keypress click', function() {
$('#up').toggle();
$('#down').toggle();
});