gpt4 book ai didi

javascript - 平滑滚动前的 sleep 功能

转载 作者:行者123 更新时间:2023-12-03 10:47:36 24 4
gpt4 key购买 nike

如何在平滑滚动之前添加 3 秒暂停?用户点击按钮,然后会休眠 3 秒,然后平滑滚动就会运行。

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

最佳答案

您可以像这样添加 setTimeout() :

 $(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) {
setTimeout(function(){
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
}, 3000);
return false;
}
}
});
});

关于javascript - 平滑滚动前的 sleep 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28516206/

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