1 Star 0 Fork 15

lewishe / 404

forked from haiyongcsdn / 404 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
22-code-theme-404-page.html 2.23 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
haiyongcsdn 提交于 2021-04-05 21:18 . add 22-code-theme-404-page.html.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Code-Theme 404 Page</title>
<style>@import url("https://fonts.googleapis.com/css?family=Bevan");
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background: #282828;
overflow: hidden;
}
p {
font-family: "Bevan", cursive;
font-size: 130px;
margin: 10vh 0 0;
text-align: center;
letter-spacing: 5px;
background-color: black;
color: transparent;
text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
-webkit-background-clip: text;
-moz-background-clip: text;
background-clip: text;
}
p span {
font-size: 1.2em;
}
code {
color: #bdbdbd;
text-align: center;
display: block;
font-size: 16px;
margin: 0 30px 25px;
}
code span {
color: #f0c674;
}
code i {
color: #b5bd68;
}
code em {
color: #b294bb;
font-style: unset;
}
code b {
color: #81a2be;
font-weight: 500;
}
a {
color: #8abeb7;
font-family: monospace;
font-size: 20px;
text-decoration: underline;
margin-top: 10px;
display: inline-block;
}
@media screen and (max-width: 880px) {
p {
font-size: 14vw;
}
}</style>
</head>
<body>
<p>HTTP: <span>404</span></p>
<code><span>this_page</span>.<em>not_found</em> = true;</code>
<code><span>if</span> (<b>you_spelt_it_wrong</b>) {<span>try_again()</span>;}</code>
<code><span>else if (<b>we_screwed_up</b>)</span> {<em>alert</em>(<i>"We're really sorry about that."</i>); <span>window</span>.<em>location</em> = home;}</code>
<center><a href="http://haiyongcsdn.gitee.io/">HOME</a></center>
<script>function type(n, t) {
var str = document.getElementsByTagName("code")[n].innerHTML.toString();
var i = 0;
document.getElementsByTagName("code")[n].innerHTML = "";
setTimeout(function() {
var se = setInterval(function() {
i++;
document.getElementsByTagName("code")[n].innerHTML =
str.slice(0, i) + "|";
if (i == str.length) {
clearInterval(se);
document.getElementsByTagName("code")[n].innerHTML = str;
}
}, 10);
}, t);
}
type(0, 0);
type(1, 600);
type(2, 1300);
</script>
</body>
</html>
1
https://gitee.com/lewisxhe/n404.git
git@gitee.com:lewisxhe/n404.git
lewisxhe
n404
404
master

搜索帮助