前端之家收集整理的这篇文章主要介绍了
jquery – 按ID偏移元素运行ScrollTop,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
尝试使浏览器滚动到一个特定的ID,
增加了偏移量 –
$('html,body').animate({scrollTop: $('#contact').offset().top},'slow');
我需要做的是将偏移量设置为-100px。我该如何做到这一点?
没有魔法,只是从元素的偏移顶部减去
$('html,body').animate({scrollTop: $('#contact').offset().top -100 },'slow');
原文链接:https://www.f2er.com/jquery/184996.html