-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
129 lines (115 loc) · 3.38 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8;"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="robots" content="all" />
<meta name="robots" content="index,follow"/>
<meta http-equiv="refresh" content="2; url=https://blog.ihoey.com/" />
<title>404错误-梦魇小栈</title>
<style>
body{
min-width: 320px;
}
a {
text-decoration: none;
color: #333;
}
a:hover {
color: #0a8;
}
.panel {
border: solid 1px #ddd;
border-radius: 4px;
}
.margin-big-top {
margin-top: 20px;
}
.text-center {
text-align: center;
}
.padding-top {
padding-top: 10px;
}
.float-left {
float: left !important;
margin-left: 15%;
}
.alert {
border-radius: 5px;
padding: 15px;
border: solid 1px #ddd;
background-color: #f5f5f5;
}
.float-right {
float: right !important;
margin-right: 15%;
}
.padding-big {
padding: 20px;
}
.button:active {
background-image: none;
outline: 0;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.button:hover {
background-color: #f5f5f5;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.button {
border: solid 1px #ddd;
background: transparent;
border-radius: 4px;
font-size: 14px;
padding: 6px 15px;
margin: 0;
display: inline-block;
line-height: 20px;
transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
}
.bg-yellow {
color: white;
background-color: #f60;
}
.button.bg-yellow:hover, .button.bg-yellow:focus {
color: #fff;
border-color: #f90;
background-color: #f90;
}
</style>
</head>
<body>
<div class="container" style=" margin-top:8%;">
<div class="panel margin-big-top">
<div class="text-center">
<br>
<h2 class="padding-top">
<stong>404错误!抱歉您要找的页面不存在</stong>
</h2>
<div class="padding-big">
<a href="./" class="button bg-yellow"><span id="s">3</span>返回首页</a>
<a href="http://wpa.qq.com/msgrd?v=3&uin=1058221214&site=qq&menu=yes" class="button">保证不打死管理员</a>
</div>
<div>
<div class="float-left">
<img src="images/ds-1.gif">
<div class="alert"> 卧槽!页面不见了!</div>
</div>
<div class="float-right">
<img src="images/ds-2.png" width="260">
</div>
</div>
</div>
</div>
</div>
<script>
var s = 3;
setInterval(function () {
document.getElementById("s").innerHTML = s--;
},1000)
</script>
</body>
</html>