首页 > 编程 > JavaScript > 正文

jQuery aminate方法定位到页面具体位置

2019-11-20 21:22:27
字体:
来源:转载
供稿:网友
通过jQuery的aminate动画方法定位。

示例如下:
复制代码 代码如下:

scrollOffset($("#qa").offset());

// jQuery 定位让body的scrollTop等于pos的top,就实现了滚动
function scrollOffset(scroll_offset) {
$("body,html").animate({
scrollTop: scroll_offset.top - 70
}, 0);
}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表