JSFiddle - React, Tailwind, and code Playground

by Ajey

HTML

<img src="https://www.gravatar.com/avatar/f6848fc76d0a9b161aba3a8dd7cd5a7e?s=24&d=identicon&r=PG&f=1" id="my_img"  height="40" width="30" class="firstimg" style="position:absolute" >

JavaScript

$(document).ready(function () {    
    var bouncetime = 1700;
    var ballheight = 280;
    var ballsize = 20;

$('#my_img').animate({'bottom':70}, bouncetime, 'easeInQuad', function() {
    

    });
    
    });

    $('#my_img').hover(function(){
      $(this).hide();  
    });