Skip to content

Instantly share code, notes, and snippets.

@rickslayer
Created July 20, 2020 18:30
Show Gist options
  • Save rickslayer/6abdaaa7f9c32295826ac43446a267ab to your computer and use it in GitHub Desktop.
Save rickslayer/6abdaaa7f9c32295826ac43446a267ab to your computer and use it in GitHub Desktop.
$(window).on('keydown', function (e) {
if (e.which != 40) return false;
var posicao = $('#destino').position().top;
$('html, body').stop().animate({
scrollTop: posicao
}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment