我的网站上有这个流畅的滚动脚本。我正在尝试进行平滑滚动,滚动到目标ID 但在ID 之前停止约20px。
这是我的代码:
$(function() {
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
我尝试更改target.offset
,但这不起作用。这可能吗?