gpt4 book ai didi

javascript - 链接到同一页面上的 anchor 减去一些像素

转载 作者:太空宇宙 更新时间:2023-11-04 10:05:59 27 4
gpt4 key购买 nike

我将平滑滚动集成到页面的 anchor 中。它与代码配合得很好:

$(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;
}
}
});
});

现在,当我单击链接时,它会滚动到该位置。但是因为我在顶部有一个固定的菜单栏(高度:100px),所以它与内容重叠了一点。我能以某种方式解决这个问题吗?就像在代码中说的那样:滚动到那个 anchor 减去 100px ...我认为它可能适用于

scrollTop: target.offset(-100).top

是这样吗?

最佳答案

jQuery 的 offset是一个只给你一个元素偏移量的函数。这并不是要更改偏移量本身。之后减去 100px。

scrollTop: target.offset().top - 100

关于javascript - 链接到同一页面上的 anchor 减去一些像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38007742/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com