Skip to content

Instantly share code, notes, and snippets.

@0632347878
Created January 9, 2019 14:52
Show Gist options
  • Save 0632347878/d2bbacec04f42926a3b5daca6f68b7bd to your computer and use it in GitHub Desktop.
Save 0632347878/d2bbacec04f42926a3b5daca6f68b7bd to your computer and use it in GitHub Desktop.
$('.js-anchor').click(function () {
$('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top - 50
}, 500);
});
@0632347878
Copy link
Author

$('a.toc-link').click(function(e){
e.preventDefault();
$('html, body').animate({
scrollTop: $('[id="' + $.attr(this, 'href').substr(1) + '"]').offset().top
}, 500);
return false;
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment