-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (74 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
78 lines (74 loc) · 3.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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet">
<title>跳转到我的网站</title>
<!-- 默认样式 -->
<link rel="stylesheet" href="src/css/base.css" id="base-css">
<link rel="stylesheet" href="src/css/particles.css" id="particles-css">
<link rel="stylesheet" href="src/css/overlay.css" id="overlay-css">
<link rel="stylesheet" href="src/css/responsive.css" id="responsive-css">
<link rel="stylesheet" href="src/css/themes.css" id="themes-css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* 预加载默认主题背景,避免页面加载时背景变白 */
body.deepsea-theme {
background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%) !important;
}
</style>
</head>
<body class="deepsea-theme">
<!-- 微信/QQ浏览器引导遮罩层 -->
<div class="overlay" id="browserOverlay" role="dialog" aria-labelledby="guideTitle" aria-describedby="guideText">
<div class="guide-box">
<div class="guide-icon">
<i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
</div>
<h2 class="guide-title" id="guideTitle">请在浏览器中打开</h2>
<p class="guide-text" id="guideText">
检测到您正在使用微信或QQ内置浏览器访问,为了获得最佳体验,请点击右上角菜单,选择"在浏览器中打开"。
</p>
<div class="browser-icons">
<div class="browser-icon">
<i class="fab fa-chrome" aria-hidden="true"></i>
<span>Chrome</span>
</div>
<div class="browser-icon">
<i class="fab fa-safari" aria-hidden="true"></i>
<span>Safari</span>
</div>
<div class="browser-icon">
<i class="fab fa-firefox" aria-hidden="true"></i>
<span>Firefox</span>
</div>
<div class="browser-icon">
<i class="fab fa-edge" aria-hidden="true"></i>
<span>Edge</span>
</div>
</div>
<button class="guide-btn" id="copyUrlBtn">复制链接地址</button>
</div>
</div>
<!-- 主内容区 -->
<main class="main-content">
<div class="background-animation" id="particles" aria-hidden="true"></div>
<div class="container">
<h1>即将跳转到我的网站</h1>
<div class="countdown" id="countdown" role="timer" aria-live="polite">5</div>
<div class="message">
正在为您准备跳转页面
<span class="loading-dots"><span class="dot"></span><span class="dot"></span><span class="dot"></span></span>
<span class="target-url" id="targetUrl">https://my-website.com</span>
</div>
<div class="progress-container">
<div class="progress-bar"></div>
</div>
<div class="footer">安全跳转 · 请勿关闭此页面</div>
<div id="customFooter"></div>
</div>
</main>
<script src="src/js/main.js" type="module"></script>
</body>
</html>