我正在使用以下代码滚动到元素的顶部,但我想在元素顶部上方滚动10px,不知道我怎么能这样做,有什么建议吗?谢谢!
$('html, body').stop(true,true).animate({
scrollTop: $(".career-overlay").offset().top
}, 2000)
答案 0 :(得分:14)
像这样:
$('html, body').stop(true,true).animate({
scrollTop: $(".career-overlay").offset().top - 10
}, 2000)