gpt4 book ai didi

javascript - 将偏移量添加到javascript

转载 作者:行者123 更新时间:2023-11-28 06:55:17 25 4
gpt4 key购买 nike

我有一个小脚本可以在我网站上的航路点之间滑动:

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

现在我必须添加一个偏移量。如果用户点击 <a href="#jumper">JUMP!</a>

javascript 应该滚动到 <div id="#jumper"></div>偏移量为 500px。我没有找出正确的代码部分。

最佳答案

      if (target.length) {
$('html,body').animate({
scrollTop: target.offset(+500).top
}, 1000);
return false;
}

.offset(+500) <-- 500px

关于javascript - 将偏移量添加到javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33545696/

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