jquery如何偏移滚动位置

时间:2013-05-10 11:48:20

标签: jquery scroll

我有以下代码滚动到某个元素:

$('html, body').animate({
         scrollTop: $("#maincontent").offset().top
     }, 400);

但是,我在顶部有一个固定的导航栏,因此希望能够抵消这一点。如何将其偏移几个像素?

3 个答案:

答案 0 :(得分:4)

尝试

$('html, body').animate({
    scrollTop: $("#maincontent").offset().top - 100 // Means Less header height
},400);

答案 1 :(得分:0)

$("#maincontent").scrollTop(300);

答案 2 :(得分:0)

$("#maincontent").offset().top只返回一个整数,你只需要添加或减去它来改变偏移量

$("#maincontent").offset().top - 100