我想做的是运行动画 7 秒,然后重定向到实际的索引.html文件,但是当我使用下面的代码时,动画在 7 秒内完成.html然后它不断重新加载索引.html。我正在考虑使用 for 循环或 if 语句,但我真的不知道从哪里开始。
$(function() {
setTimeout(function() {
$(".fly-in-text").removeClass("hidden");
});
setTimeout(function() {
$(".allblack").remove();
}, 7000);
$(document).ready(function() {
// Handler for .ready() called.
window.setTimeout(function() {
location.href = "index.html";
}, 7000);
});
});
我的代码当前是什么样子的
我必须将元标记放置到我想重定向到的页面
<meta http-equiv="refresh" content="5;url=index.html" />
然后我不得不添加一个 JavaScript 函数脚本
function leave() {
window.location = "index.html";
}
setTimeout("leave()", 5000);