jQuery aminate方法定位到页面具体位置
时间:2020-12-25 12:34:35|栏目:jquery|点击: 次
通过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 数据选择插件Pickerbox使用介绍
栏 目:jquery
本文标题:jQuery aminate方法定位到页面具体位置
本文地址:http://www.codeinn.net/misctech/36491.html