Skip to content

Commit f87297b

Browse files
committed
Site updated: 2022-05-02 22:30:25
1 parent 7a428fc commit f87297b

File tree

243 files changed

+32748
-21312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

243 files changed

+32748
-21312
lines changed

2022/05/02/hello-world/index.html

Lines changed: 823 additions & 601 deletions
Large diffs are not rendered by default.

404.html

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
<!DOCTYPE html>
2+
<html lang="zh-CN">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>404 - Not Found</title>
6+
<link rel="icon" href="/images/favicon.png">
7+
<style>
8+
* {
9+
margin: 0;
10+
padding: 0;
11+
outline: none;
12+
font-family: \5FAE\8F6F\96C5\9ED1, 宋体;
13+
-webkit-user-select: none;
14+
-moz-user-select: none;
15+
-ms-user-select: none;
16+
-khtml-user-select: none;
17+
user-select: none;
18+
cursor: default;
19+
font-weight: lighter;
20+
}
21+
22+
.center {
23+
margin: 0 auto;
24+
color: #fff;
25+
font-weight: bolder;
26+
font-size: 72px;
27+
}
28+
29+
.whole {
30+
width: 100%;
31+
height: 100%;
32+
line-height: 100%;
33+
position: fixed;
34+
bottom: 0;
35+
left: 0;
36+
z-index: -1000;
37+
overflow: hidden;
38+
}
39+
40+
.whole img {
41+
width: 100%;
42+
height: 100%;
43+
}
44+
45+
.mask {
46+
width: 100%;
47+
height: 100%;
48+
position: absolute;
49+
top: 0;
50+
left: 0;
51+
background: #000;
52+
opacity: 0.6;
53+
filter: alpha(opacity=60);
54+
}
55+
56+
.b {
57+
width: 100%;
58+
text-align: center;
59+
height: 400px;
60+
position: absolute;
61+
top: 50%;
62+
margin-top: -230px
63+
}
64+
65+
.a {
66+
width: 150px;
67+
height: 50px;
68+
margin-top: 30px
69+
}
70+
71+
.a a {
72+
display: block;
73+
float: left;
74+
width: 150px;
75+
height: 50px;
76+
background: #fff;
77+
text-align: center;
78+
line-height: 50px;
79+
font-size: 18px;
80+
border-radius: 25px;
81+
color: #333
82+
}
83+
84+
.a a:hover {
85+
color: #000;
86+
box-shadow: #fff 0 0 20px
87+
}
88+
89+
p {
90+
color: #fff;
91+
margin-top: 40px;
92+
font-size: 24px;
93+
}
94+
95+
#num {
96+
margin: 0 5px;
97+
font-weight: bold;
98+
}
99+
</style>
100+
<script type="text/javascript">
101+
var num = 5;
102+
function redirect() {
103+
num--;
104+
document.getElementById("num").innerHTML = num;
105+
if (num < 0) {
106+
document.getElementById("num").innerHTML = 0;
107+
location.href = "https://www.hojun.cn";
108+
}
109+
}
110+
setInterval("redirect()", 1000);
111+
</script>
112+
</head>
113+
114+
<!-- <body onload="redirect();">
115+
<div class="whole">
116+
<img src="https://wx4.sinaimg.cn/large/006bYVyvgy1ftan82duvvj30xc0p0mzb.jpg">
117+
<div class="mask"></div>
118+
</div>
119+
<div class="b">
120+
<h1 class="center">可能输错网址或此页面从未存在过</h1>
121+
<p><br><br><br><br>
122+
<span id="num"></span>秒后将继续探险...
123+
</p>
124+
</div> -->
125+
</body>
126+
<script type="text/javascript" src="//qzonestyle.gtimg.cn/qzone/hybrid/app/404/search_children.js" charset="utf-8" homePageUrl="https://www.hojun.cn/" homePageName="返回主页"></script>
127+
</html>

apple-touch-icon.png

-18.7 KB
Binary file not shown.

0 commit comments

Comments
 (0)