jQuery aminate方法定位到页面具体位置_jquery
程序员文章站
2022-04-11 16:05:42
...
通过jQuery的aminate动画方法定位。
示例如下:
scrollOffset($("#qa").offset());
// jQuery 定位让body的scrollTop等于pos的top,就实现了滚动
function scrollOffset(scroll_offset) {
$("body,html").animate({
scrollTop: scroll_offset.top - 70
}, 0);
}
示例如下:
复制代码 代码如下:
scrollOffset($("#qa").offset());
// jQuery 定位让body的scrollTop等于pos的top,就实现了滚动
function scrollOffset(scroll_offset) {
$("body,html").animate({
scrollTop: scroll_offset.top - 70
}, 0);
}
推荐阅读
-
jquery访问servlet并返回数据到页面的方法
-
jQuery中将json数据显示到页面表格的方法
-
jQuery aminate方法定位到页面具体位置
-
Jquery跳到页面指定位置的方法
-
jquery访问servlet并返回数据到页面的方法
-
jQuery中将json数据显示到页面表格的方法
-
jquery 如何查找当前页面的字符串并定位到那个字符串位置呢?_html/css_WEB-ITnose
-
jquery 如何查找当前页面的字符串并定位到那个字符串位置呢?_html/css_WEB-ITnose
-
Jquery跳到页面指定位置的方法_jquery
-
jQuery实现平滑滚动页面到指定锚点链接的方法_jquery