Skip to content

Instantly share code, notes, and snippets.

@plutochill
Created September 23, 2013 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save plutochill/6671285 to your computer and use it in GitHub Desktop.
Save plutochill/6671285 to your computer and use it in GitHub Desktop.
平滑滚动页面到某个锚点
$(document).ready(function() {
$("a.topLink").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 500,
easing: "swing"
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment