JSFiddle - React, Tailwind, and code Playground

by fenderistic

HTML

<img id='Logo' style="position:fixed;left:25%;top:-50%;" src="Logo.png">
<img  id='Hand' style="width:20%;height:60%; position:fixed;left:40%;top:-80%;" src="hand.png">

JavaScript

$("#Hand").animate({
           top: '-15%'
        }, { duration: 800, queue: false });

        $("#Logo").animate({
           top: '20%'
        },{ duration: 800, queue: true});

        $("#Hand").animate({top:"-80%"},800);