-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.92 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>你的访问被拒绝</title>
<link rel="shortcut icon" href="./amiya.ico" type="image/x-icon">
<style>
html{
font-family:"PingFang SC", "HarmonyOS Sans SC","Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", 微软雅黑, STHeitiSC-Light, simsun, 宋体, "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif;
}
#container {
position: absolute;
width: 100%;
}
#title, #subtitle, #tip {
text-align: center;
padding: 7px;
}
#title {
font-size: 2em;
}
#subtitle, #tip {
font-size: 1.5em;
}
</style>
</head>
<body>
<div id="container">
<div id="title">
<strong>很抱歉,AmiyaV5 官网已不提供服务。</strong>
</div>
<div id="subtitle">
因项目组已放弃对 V5 版本的维护,V5 版本的官网相应的停止提供服务。<br\>
在有新的计划前,AmiyaV5 官网将跳转至 V6 框架官网。
</div>
<div id="tip"></div>
<div id="subtitle">
如未自动跳转,请点击 <a href="https://www.amiyabot.com/">此处</a>。
</div>
<script>
var s = 6;
function countTime() {
if(s > 0) {
s--;
}
else {
window.location.href = "https://www.amiyabot.com/"
}
document.getElementById("tip").innerHTML = "即将跳转至 AmiyaV6 框架官网 跳转还剩 " + s + " 秒...";
setTimeout(countTime, 1000);
}
countTime();
</script>
</body>
</html>