Skip to content

Instantly share code, notes, and snippets.

@creamidea
Created April 5, 2013 15:55
Show Gist options
  • Save creamidea/5320431 to your computer and use it in GitHub Desktop.
Save creamidea/5320431 to your computer and use it in GitHub Desktop.
使用jquery完成平滑的滚动效果
//需要jquery, 当然你也可以全部纯手工打造
$('#text-table-of-contents').delegate('a', 'click', function() {
var target = $(this).attr("href");
var scrollNum = $(target)[0].offsetTop;
$('html, body').animate({ scrollTop: scrollNum-24 }, 'slow');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment