Skip to content

Instantly share code, notes, and snippets.

@akccakcctw
Created August 28, 2016 15:43
Show Gist options
  • Save akccakcctw/270f47fc5234f0b65dad41f83cbeb117 to your computer and use it in GitHub Desktop.
Save akccakcctw/270f47fc5234f0b65dad41f83cbeb117 to your computer and use it in GitHub Desktop.
卷軸平滑捲動到頁面元素
//smooth scroll to #id
var $root = $('html, body');
$('a.bookmark').click(function() {
var href = $.attr(this, 'href');
$root.animate({
scrollTop: $(href).offset().top
}, 500, function() {
window.location.hash = href;
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment