Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save iblh/2b9480040525e0b84ff54eefc04b3a4f to your computer and use it in GitHub Desktop.
Save iblh/2b9480040525e0b84ff54eefc04b3a4f 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