将屏幕滚动到指定位置
1、例如:设置屏幕滚动到id为div的顶部
注意移动端要使用 $("body,html")
,使用 $("body")
会不起作用
var mov = $("#div").offset().top;
$("body,html").animate({
scrollTop:mov
},0);
2、 如设置锚点定位,添加滑动效果即可
var $root = $("body,html");
$('a').click(function() {
$root.animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
return false;
});