gpt4 book ai didi

javascript - anchor 位置等于位置减去标题高度

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

我有固定的标题。当我点击 anchor 链接时,它会转到那个位置。问题是我的固定标题的高度与该位置重叠。我希望当我到达某个 anchor 时,它的位置是 = anchor - 标题高度。

这是我的 javascript 代码:

<script> <!--Anchors-->
$(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;
}
}
});
});
</script>

最佳答案

可以在页面内容前加一些边距

#fixed-header{
position: fixed;
height: 100px;
top: 0;
}
body {
margin-top: 100px;
}

关于javascript - anchor 位置等于位置减去标题高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38164115/

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