Skip to content

Instantly share code, notes, and snippets.

@wangwen1220
Last active January 2, 2016 10:59
Show Gist options
  • Save wangwen1220/8293801 to your computer and use it in GitHub Desktop.
Save wangwen1220/8293801 to your computer and use it in GitHub Desktop.
JS: jQuery 平滑回到顶端链接 | gotop back to top
// jQuery 平滑回到顶端链接
$(function() {
$("a.gotop").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