gpt4 book ai didi

jQuery 平滑滚动偏移

转载 作者:行者123 更新时间:2023-11-30 23:51:05 24 4
gpt4 key购买 nike

我有以下 jQuery 代码

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

这是一个滚动插件,可以平滑地向下滚动到页面中的内部链接。我想将学校偏移 -140px,这样它就不会向右滚动到 DIV。

如何实现这一目标?

最佳答案

尝试...

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

关于jQuery 平滑滚动偏移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19572973/

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