jQuery Smooth Scroll to any Anchor
This question already has an answer here:
我无法让你的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/23084.html
上一篇: 使用jquery滚动到页面上的特定元素
下一篇: jQuery平滑滚动到任何锚点