JSFiddle - React, Tailwind, and code Playground
by Christopher
HTML
<div class="reachme"><a href="http://www.google.com">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'
}, {
duration: 1300,
easing: 'easeOutBounce'
});