Skip to content

Instantly share code, notes, and snippets.

@ratul16
Last active June 12, 2020 09:30
Show Gist options
  • Save ratul16/4ecb26ee7b65bca5d3c004a80fbf141c to your computer and use it in GitHub Desktop.
Save ratul16/4ecb26ee7b65bca5d3c004a80fbf141c to your computer and use it in GitHub Desktop.
A simple jquery scroll animation for going from one position to another
$(".page-scroll").click(function () {
var href = $(this).attr('href')
$('html, body').animate({
scrollTop: $(`${href}`).offset().top - 70
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment