-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (92 loc) · 2.03 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
82
83
84
85
86
87
88
89
90
91
92
<!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>
</head>
<body>
<style>
body {
font-size: 60px;
text-align: center;
writing-mode: vertical-lr;
}
a {
display: block;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
line-height: 100vh;
writing-mode: horizontal-tb;
text-decoration: none;
background-image: -webkit-linear-gradient(
left,
green,
yellow,
pink,
blue,
red 25%,
green 35%,
blue 50%,
yellow 60%,
red 75%,
pink 85%,
blue 100%
);
background-image: -moz-linear-gradient(
left,
green,
yellow,
pink,
blue,
red 25%,
green 35%,
blue 50%,
yellow 60%,
red 75%,
pink 85%,
blue 100%
);
background-image: linear-gradient(
left,
green,
yellow,
pink,
blue,
red 25%,
green 35%,
blue 50%,
yellow 60%,
red 75%,
pink 85%,
blue 100%
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background-size: 200% 100%;
animation: streamer 15s infinite linear;
}
@keyframes streamer {
0% {
background-position: 0 0;
}
100% {
background-position: -100% 0;
}
}
</style>
<p>此域名暂时停用</p>
<p>即将跳转至新域名</p>
<p>
<a href="https://undeio.com">undeio.com</a>
</p>
<script type="text/javascript">
window.location.href = "https://undeio.com";
</script>
</body>
</html>