-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (80 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>301 - Resource Moved Permanently</title>
<link rel="icon" href="images/favicon.png">
<style>
.whole {
width: 100%;
height: 100%;
line-height: 100%;
position: fixed;
bottom: 0;
left: 0;
z-index: -1000;
overflow: hidden;
}
.whole img {
width: 100%;
height: 100%;
}
.mask {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #000;
opacity: 0.6;
filter: alpha(opacity=60);
}
.b {
width: 50%;
height: 300px;
text-align: left;
padding-left: 10%;
margin-top:20%;
color: #fff;
}
h1 {
font-size: 72px;
}
p {
color: #fff;
margin-top: 40px;
font-size: 24px;
}
#num {
margin: 0 5px;
font-weight: bold;
}
a {
color: #fff;
}
</style>
<script type="text/javascript">
var num = 10;
function redirect() {
num--;
document.getElementById("num").innerHTML = num;
if (num < 0) {
document.getElementById("num").innerHTML = 0;
location.href = "https://tomartisan.com";
}
}
setInterval("redirect()", 1000);
</script>
</head>
<body onload="redirect();">
<div class="whole">
<img src="images/unreachable-bg.webp">
<div class="mask"></div>
</div>
<div class="b">
<h1>301 Tips !</h1>
<h2>thomartisen have been moved to <a href="https://tomartisan.com">tomartisan</a> permanently...</h2>
<p>click to go or automatically go after<span id="num"></span>seconds</p>
</div>
</body>
</html>