jQuery平滑滚动到任何锚点
这个问题在这里已经有了答案:
我无法让你的jsfiddle工作,看看这是否工作:
$(function(){
$('a').on({
click:function (e) {
e.preventDefault();
var root = $("html, body");
var target = $(this).attr("href");
root.animate({
scrollLeft: $(target).offset().left,
scrollTop: $(target).offset().top
}, 500);
}
});
)};
链接地址: http://www.djcxy.com/p/23083.html
上一篇: jQuery Smooth Scroll to any Anchor
下一篇: Scroll the div content when clicking a up or down button