gpt4 book ai didi

javascript - JS 延迟后滚动

转载 作者:行者123 更新时间:2023-11-30 06:38:08 25 4
gpt4 key购买 nike

我试图让我的网站滚动到单独页面上的特定帖子。我认为这背后的 PHP 部分可以为我生成 anchor ,但是我坚持使用 JS 部分。我设法让网页从位置 0,0 开始,然后转到静态 anchor 标记。我遇到的问题是如何让 JS 从当前 URL 获取 anchor 标记,然后在短暂延迟后使其平滑滚动到给定标记。

我当前的代码是:

$(document).ready(function() {
if (location.hash) {
window.scrollTo(0, 0);
}
});

setTimeout("window.location.hash = '#scroll';", 5000);

我发现以下片段从 URL 中获取 anchor 标记,但我不确定如何让它在延迟一段时间后执行。

    $(document).ready(function() {
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
.replace(/\/$/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElem = scrollableElement('html', 'body');

$('a[href*=#]').each(function() {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
var $target = $(this.hash), target = this.hash;
if (target) {
var targetOffset = $target.offset().top;
$(this).click(function(event) {
event.preventDefault();
$(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
location.hash = target;
});
});
}
}
});

// use the first element that is "scrollable"
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}

});

最佳答案

我不相信 setTimeout 接受任何作为字符串传递的旧代码,只接受函数名称。尝试改用匿名函数:

setTimeout(function() { window.location.hash = '#scroll'; }, 5000);

关于javascript - JS 延迟后滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13297076/

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