加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
404.html 1.79 KB
一键复制 编辑 原始数据 按行查看 历史
tangbo 提交于 2021-12-21 16:36 . Site updated: 2021-12-21 16:36:33
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>404 - Not Found</title>
<link rel="icon" href="/images/favicon.png">
<style>
.whole {
width: 100%;
height: 100%;
line-height: 100%;
position: fixed;
bottom: 0;
left: 0;
z-index: -1000;
overflow: hidden;
}
.whole img {
width: 100%;
height: 100%;
}
.mask {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #000;
opacity: 0.6;
filter: alpha(opacity=60);
}
.b {
width: 50%;
height: 300px;
text-align: left;
padding-left: 10%;
margin-top:20%;
color: #fff;
}
h1 {
font-size: 72px;
}
p {
color: #fff;
margin-top: 40px;
font-size: 24px;
}
#num {
margin: 0 5px;
font-weight: bold;
}
</style>
<script type="text/javascript">
var num = 10;
function redirect() {
num--;
document.getElementById("num").innerHTML = num;
if (num < 0) {
document.getElementById("num").innerHTML = 0;
location.href = "/";
}
}
setInterval("redirect()", 1000);
</script>
</head>
<body onload="redirect();">
<div class="whole">
<img src="/images/404-bg.png">
<div class="mask"></div>
</div>
<div class="b">
<h1>404 !</h1>
<h2>Page not found...</h2>
<p>Return to home page after<span id="num"></span>seconds</p>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化