JSFiddle - React, Tailwind, and code Playground

by tr_santi

CSS

body {
    height: 5000px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff3232+0,ffd800+100 */
background: #ff3232; /* Old browsers */
background: -moz-linear-gradient(top,  #ff3232 0%, #ffd800 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ff3232 0%,#ffd800 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ff3232 0%,#ffd800 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3232', endColorstr='#ffd800',GradientType=0 ); /* IE6-9 */

}

JavaScript

$('body, html').delay(1000).animate({
   scrollTop: 5000
}, 10000);