gpt4 book ai didi

javascript - 平滑滚动无法正常工作

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

我一直在用头撞墙,尝试使用大量平滑滚动插件来解决注册按钮无法正常向下滚动到#target 部分的问题。

请帮助 hive mind,我正在使用 CSS 技巧代码。

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

你可以在

看到带有所有 html css 和其他 js 的笔

https://codepen.io/samducker/pen/RVoORy

最佳答案

取消你的代码并尝试这个代码(它可能会有点快,可能将它更改为 500),如果你的按钮和 anchor 之间有太多内容,它可能会有点滞后:

/*Scroll Down Button*/
$(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;
}
}
});
});

关于javascript - 平滑滚动无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43634187/

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