JSFiddle - React, Tailwind, and code Playground

by Christopher

HTML

<div class="solid"><a href="">Click me</a></div>
<div id="block"></div>

CSS

#block {width:300px;height:300px;background-color:orange;position:relative;top:200px;}

JavaScript

$(".solid a").click(function(event) {
    event.preventDefault();
    $("#block").animate({top: '320px'}, { duration:'200px', easing: 'easeOutBounce' });