Skip to content

Instantly share code, notes, and snippets.

@MrVladevoit
Created June 14, 2017 11:57
Show Gist options
  • Save MrVladevoit/e74ef1f8a835c18eca00f732fe0c88fd to your computer and use it in GitHub Desktop.
Save MrVladevoit/e74ef1f8a835c18eca00f732fe0c88fd to your computer and use it in GitHub Desktop.
scroll-transition jquery
/*========== TRANSITION SCROLL ==============*/
$('.scroll').on("click", function (e) {
e.preventDefault();
var anchor = $(this);
$('html, body').stop().animate({
scrollTop: $(anchor.attr('href')).offset().top
}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment