forked from ztl3106742440-hub/go2-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo2-tutorial.html
More file actions
48 lines (48 loc) · 1.51 KB
/
Copy pathgo2-tutorial.html
File metadata and controls
48 lines (48 loc) · 1.51 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Go2 教材站点 · 快速打开</title>
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="refresh" content="0; url=https://ztl3106742440-hub.github.io/go2-tutorial/?v=88ab530">
<style>
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Noto Sans SC", system-ui, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #fff;
}
.icon {
font-size: 72px;
animation: bounce 1.2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
h1 { font-weight: 500; margin: 20px 0 8px; }
p { opacity: 0.9; margin: 4px 0; }
a {
color: #fff;
text-decoration: underline;
font-weight: 500;
}
</style>
</head>
<body>
<div class="icon">🐕</div>
<h1>正在打开 Go2 教材站点...</h1>
<p>如果浏览器没自动跳转,点下面的链接:</p>
<p><a href="https://ztl3106742440-hub.github.io/go2-tutorial/?v=88ab530">https://ztl3106742440-hub.github.io/go2-tutorial/?v=88ab530</a></p>
<script>
window.location.replace("https://ztl3106742440-hub.github.io/go2-tutorial/?v=88ab530");
</script>
</body>
</html>