1 Star 0 Fork 10

九黎先民/BigScreenExamples

forked from shaofeer/BigScreenExamples 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.html 721 Bytes
一键复制 编辑 原始数据 按行查看 历史
shaofeer 提交于 2020-11-23 17:26 . 整理模板,添加索引页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>首页</title>
<!-- <meta http-equiv="refresh" content="3;url=./bk/index.html">-->
</head>
<body>
<h1 id="refresh">正在进入,请稍后……还剩3秒</h1>
</body>
<script type="text/javascript">
var s = document.getElementById('refresh');
var time = 2; //时间,秒
function Redirect() {
window.location = "./home/index.html";
}
var i = 0;
function dis() {
s.innerHTML = "正在进入,请稍后……还剩" + (time - i) + "";
i++;
}
timer = setInterval('dis()', 1000); //显示时间
timer = setTimeout('Redirect()', time * 1000); //跳转
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/csslisi/BigScreenExamples.git
git@gitee.com:csslisi/BigScreenExamples.git
csslisi
BigScreenExamples
BigScreenExamples
master

搜索帮助