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

jQuery如何定位到页面具体位置,我们可以通过jQuery的aminate动画方法定位,下面有个不粗的示例,感兴趣的朋友可以参考下

通过jQuery的aminate动画方法定位。

示例如下:

复制代码 代码如下:


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

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

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdwzzd.html