当前位置: 编程技术>jquery
jQuery animate方法定位页面具体位置(示例)
来源: 互联网 发布时间:2014-09-03
本文导语: jQuery实现定位到页面具体位置,通过jQuery的animate动画方法定位。 例子,通过jQuery的animate动画方法定位。 代码示例: scrollOffset($("#qa").offset()); // jQuery 定位让body的scrollTop等于pos的top,实现滚动 function scrollOffset(scroll_offs...
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);
}