如何在单击链接时滚动到元素
这个问题在这里已经有了答案:
$("li a").click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 1000);
return false;
});
这将适用于李元素中的所有链接。
$(document).scrollTop($('div#content').offset().top)
这是我喜欢使用的脚本,只要我想启用“滚动到”类型的Jquery效果即可。
http://cferdinandi.github.io/smooth-scroll/
链接地址: http://www.djcxy.com/p/23087.html