jQuery animate方法定位页面具体位置(示例)

发布时间:2020-02-05编辑:脚本学堂
本文介绍下,在jquery中使用aminate方法定位页面的具体位置的例子,有需要的朋友可以参考学习下。

jquery实现定位到页面具体位置,通过jQuery的animate动画方法定位。
 
例子,通过jQuery的animate动画方法定位。
 

复制代码 代码示例:

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

// jQuery 定位让body的scrollTop等于pos的top,实现滚动
function scrollOffset(scroll_offset) {
$("body,html").animate({
scrollTop: scroll_offset.top - 70
}, 0);
}