Skip to content

Instantly share code, notes, and snippets.

@63phc
Created November 19, 2015 20:59
Show Gist options
  • Save 63phc/06836dd20bf33bd272ec to your computer and use it in GitHub Desktop.
Save 63phc/06836dd20bf33bd272ec to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$("a.slow").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 1000,
easing: "swing"
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment