JSFiddle - React, Tailwind, and code Playground
HTML
<div class="reachme"><a href="http://www.bbc.co.uk">clickme</a>
<div id="reachme"></div>
</div>
CSS
#reachme {
height:300px;
width:300px;
background-color:blue;
}
.reachme a {
color:red;
font-size:3em;
}
JavaScript
$(".reachme a").click(function(e)
{
e.preventdefault();
$("#reachme").animate(
{bottom: '-900'},
1300,
'easeOutBounce'
);
});