我有以下代码滚动到某个元素:
$('html, body').animate({
scrollTop: $("#maincontent").offset().top
}, 400);
但是,我在顶部有一个固定的导航栏,因此希望能够抵消这一点。如何将其偏移几个像素?
答案 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