-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (112 loc) · 2.06 KB
/
index.html
File metadata and controls
136 lines (112 loc) · 2.06 KB
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
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Redirecting to Plugin Wiki</title>
<style>
#all {
position: absolute;
}
#logoSection {
width: 200px;
text-shadow: 1px 1px 2px #888;
animation-name: fadein;
animation-duration: 4s;
}
#logo {
width: 200px;
font-family: Sans-Serif;
}
.brackets {
font-size: 600%;
color: #3333dd;
}
#leftbrackets {
float: left;
}
#rightbrackets {
float: right;
}
#slash {
font-size: 1000%;
text-align: center;
color: #dd3333;
position: relative;
top: -26.5px;
}
#caption {
text-align: center;
font-family: Sans-Serif;
position: relative;
top: -55px;
font-weight: 600;
}
#zh {
font-size: 125%;
}
#zh-char {
letter-spacing: 2px;
}
#en {
font-size: 85%;
}
@keyframes fadein {
from {
opacity: 0.0;
}
to {
opacity: 1.0;
}
}
#barHolder {
position: relative;
top: -20px;
width: 200px;
height: 5px;
background-color: #cccccc;
}
#bar {
height: 5px;
background-color: blue;
animation-name: loading;
animation-duration: 4s;
}
@keyframes loading {
from {
width: 0px;
}
to {
width: 200px;
}
}
</style>
</head>
<body>
<div id="all">
<div id="logoSection">
<div id="logo">
<div class="brackets" id="leftbrackets">[[</div>
<div class="brackets" id="rightbrackets">]]</div>
<div id="slash">/</div>
</div>
<div id="caption">
<div id="zh">Minecraft <span id="zh-char">插件百科</span></div>
<div id="en">Minecraft Plugin Wiki</div>
</div>
</div>
<div id="barHolder">
<div id="bar"></div>
</div>
</div>
<script>
function handleResize() {
var all = document.getElementById("all");
all.style.top = (window.innerHeight - 200) / 2 + "px";
all.style.left = (window.innerWidth - 200) / 2 + "px";
}
handleResize();
window.addEventListener("resize",handleResize,false);
setTimeout(function(){ self.location = "http://mineplugin.org"; }, 4000);
</script>
</body>
</html>