gpt4 book ai didi

jQuery:向 scrollTop 添加额外的像素

转载 作者:技术小花猫 更新时间:2023-10-29 11:14:34 25 4
gpt4 key购买 nike

当用户点击其 href 以“#”开头的链接时,我使用以下代码来平滑移动

$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});

我需要向 scrollTop 值添加大约 40px,因此停止点不会覆盖内容。我修改了代码,但它似乎并没有这样做(注意代码末尾的 +40):

$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top + 40
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});

最佳答案

我知道一个迟到的答案,但寻求解决方案的人可以试试这个。

通过添加 .top + (-40) 就可以了

$('html, body').stop().animate({
'scrollTop': $target.offset().top + (-40)
}, 900, 'swing', function () {
window.location.hash = target;
});

关于jQuery:向 scrollTop 添加额外的像素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16528647/

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