JSFiddle - React, Tailwind, and code Playground

by kiokotzu

HTML

<div></div>
<div></div>
<div></div>

CSS

div{height:300px;margin-bottom:15px;}
div:nth-child(1){background:blue; }
div:nth-child(2){background:green;}
div:nth-child(3){background:yellow;}

JavaScript

$(document).ready(function(){
  $("html, body").animate({ scrollTop: 500 }, 2000);
});