-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.76 KB
/
Copy pathindex.html
File metadata and controls
44 lines (42 loc) · 1.76 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>支付方式选择</title>
<!-- 每次更新代码时请更改此数字,以强制浏览器加载新文件 -->
<link rel="stylesheet" href="style.css?v=202406031600">
</head>
<body>
<!-- 加载动画覆盖层 -->
<div id="loading-overlay">
<div class="spinner-container">
<div class="spinner"></div>
<p class="loading-text">正在识别您的支付环境...</p>
</div>
</div>
<!-- 主内容区域 -->
<div id="main-content" class="hidden">
<div class="card">
<h1>请选择支付方式</h1>
<p class="subtitle">我们未能自动识别您的支付环境,请手动选择。</p>
<div class="button-container">
<button class="wechat-button" onclick="triggerAnimationAndRedirect('wechat_page.html')">
<img src="images/wechat.png" alt="微信图标">
<span>微信支付</span>
</button>
<button class="alipay-button" onclick="triggerAnimationAndRedirect('alipay_page.html')">
<img src="images/alipay.png" alt="支付宝图标">
<span>支付宝支付</span>
</button>
<button class="qq-button" onclick="triggerAnimationAndRedirect('qq_page.html')">
<img src="images/qq.png" alt="QQ图标">
<span>QQ支付</span>
</button>
</div>
</div>
</div>
<!-- 每次更新代码时请更改此数字,以强制浏览器加载新文件 -->
<script src="script.js?v=202406031600"></script>
</body>
</html>