Skip to content

Instantly share code, notes, and snippets.

@0632347878
Last active April 14, 2020 10:01
Show Gist options
  • Save 0632347878/a76f13b7952e51c7714d826d9aaa7e0e to your computer and use it in GitHub Desktop.
Save 0632347878/a76f13b7952e51c7714d826d9aaa7e0e to your computer and use it in GitHub Desktop.
Scroll to an element
$('html, body').animate({
scrollTop: $("#target-element").offset().top
}, 1000);
$('a').click(function(){
let href = $(this).attr('href'),
elem = $(href).offset().top;
$('html, body').animate({scrollTop: elem}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment