JSFiddle - React, Tailwind, and code Playground
by reefbarman
HTML
<div class='bouncy'></div>
CSS
.bouncy{
width: 100px;
height: 100px;
border-radius: 50px;
background: black;
color: white;
position: absolute;
top: 0;
left: 0;
}
JavaScript
var eBall = $(".bouncy");
setInterval(function(){
}, 33);