JSFiddle - React, Tailwind, and code Playground

by Felipe Stoker

HTML

<div class="homeBaixoRodapeTexto1">teste</div>

CSS

.homeBaixoRodapeTexto1{
	font-family: 'ubuntulight_italic';
	font-size: 60px;
	color: #58d5ed;
	text-align: center;
	padding-top: 65px;
}

JavaScript

$(window).on('keydown', function (e) {
    if (e.which != 40) return false;
    var posicao = $('.homeBaixoRodapeTexto1').position().top;
    $('html, body').stop().animate({
        scrollTop: posicao
    }, 1500);
});