-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJingHuiZhongXueShiPu.html
More file actions
75 lines (73 loc) · 2.32 KB
/
JingHuiZhongXueShiPu.html
File metadata and controls
75 lines (73 loc) · 2.32 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>正在跳转到杭州市景汇中学食谱......</title>
<style>
.watermark {
position: fixed;
bottom: 20px;
right: 20px;
font-family: 'Orbitron', sans-serif;
color: #64ffda;
font-size: 16px;
z-index: 9999;
text-shadow: 0 0 5px #64ffda;
opacity: 0.8;
letter-spacing: 2px;
pointer-events: none; /* 防止文字影响页面交互 */
animation: glow 2 ease-in-out infinite alternate;
}
body {
font-family: 'Arial', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.container {
text-align: center;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
background: white;
max-width: 500px;
}
.spinner {
border: 4px solid rgba(0,0,0,0.1);
width: 36px;
height: 36px;
border-radius: 50%;
border-left-color: #09f;
animation: spin 1 linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
a {
color: #09f;
text-decoration: none;
font-weight: bold;
}
</style>
<script>
setTimeout(function() {
window.location.href = "https://www.ryokuryuneko.top/JingHuiZhongXueShiPu/";
}, 50);
</script>
</head>
<body>
<div class="container">
<div class="spinner"></div>
<h1>正在跳转到新页面</h1>
<p>您将在1秒后自动跳转...</p>
<p>如果未自动跳转,请<a href="https://www.ryokuryuneko.top/JingHuiZhongXueShiPu/">点击这里手动跳转</a></p>
<div class="watermark">Ryokuryuneko</div>
</div>
</body>
</html>