-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
127 lines (122 loc) · 2.71 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
<!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, initial-scale=1, maximum-scale=1">
</head>
<style type="text/css">
#beastainer{
padding: 20px 0 20px 20px;
position: relative;
margin: 0 auto;
width: 300px;
animation: big 1s ease;
transform-origin: top center;
}
@keyframes big{
0%{
transform: scale(0);
}
100%{
transform: scale(1);
}
}
#beast404le{
left: 125px;
top: 65px;
-webkit-animation-name: crazylefteye;
animation-name: crazylefteye;
}
#beast404re{
left: 231px;
top: 68px;
-webkit-animation-name: crazyrighteye;
animation-name: crazyrighteye;
}
#beast404le,#beast404re{
position: absolute;
-webkit-animation-delay: 3s;
animation-delay: 6s;
-webkit-animation-duration: 7s;
animation-duration: 7s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-play-state: running;
animation-play-state: running;
}
@keyframes crazyrighteye{
0%, 100%, 70% {
left: 231px;
top: 68px;
}
10%, 20% {
left: 212px;
top: 62px;
}
40% {
left: 239px;
top: 64px;
}
50% {
left: 240px;
top: 80px;
}
60% {
left: 215px;
top: 73px;
}
}
@keyframes crazylefteye{
0%, 100%, 70% {
left: 125px;
top: 65px;
}
10%, 20% {
left: 118px;
top: 56px;
}
40% {
left: 148px;
top: 62px;
}
50% {
left: 145px;
top: 72px;
}
60% {
left: 121px;
top: 70px;
}
}
h3{
text-align: center;
}
h3 >a{
text-decoration: none;
letter-spacing: .1em;
margin-left: 56px;
color: white;
}
@media screen and (max-width: 400px){
#beastainer{
width: 100%;
height: 400px;
}
h3{
font-size: 20px;
}
}
body{
background-image: url('http://7xowaa.com1.z0.glb.clouddn.com/back.jpg');
}
</style>
<body>
<h3><a href="/">Oh My God <sub>返回主页</sub> </a></h3>
<div id="beastainer">
<img id="beast404le" src="https://developer.cdn.mozilla.net/static/img/beast-404_LE.f1435cace4b4.png" alt="">
<img id="beast404re" src="https://developer.cdn.mozilla.net/static/img/beast-404_RE.2e53f96c5abb.png" alt="">
<img class="beast 404" src="https://developer.cdn.mozilla.net/static/img/beast-404.ce38fcf80386.png" alt="">
</div>
</body>
</html>