JSFiddle - React, Tailwind, and code Playground

HTML

<div id="panel">
    <img src="http://fusedfilm.com/wp-content/uploads/2009/08/spider-man.jpg" alt="dummy image" />
</div>

CSS

body {background-color: #000}
#panel {
    width: 400px;
    height:320px;
    position: relative;
    top: 0px;
    left: 0px; 
    overflow:hidden;
    background:#fff;
}
#panel img{
    position:absolute;
    top:-320px;
}

JavaScript

$("#panel img").animate({
    top:0
   
}, 2000);