-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 5.47 KB
/
index.html
File metadata and controls
99 lines (93 loc) · 5.47 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>支持创作 | 赞助页 Nya!</title>
<link href="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/aos/2.3.4/aos.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="header" data-aos="fade-up" data-aos-duration="800">
<h1>支持我</h1>
<p style="color: #7f8c8d; margin-top: 1rem;">您的支持是我持续创作的动力喵 ❤️</p>
</div>
<div class="sponsor-grid">
<div class="sponsor-card" data-aos="fade-up" data-aos-delay="200">
<h3 style="color: var(--success-color); margin-bottom: 1rem;">微信赞助</h3>
<div class="qrcode-single">
<img src="Wechat_pay.jpeg" alt="微信收款码">
</div>
<p style="color: #7f8c8d; font-size: 0.9rem;">扫码或长按识别二维码</p>
</div>
<div class="sponsor-card" data-aos="fade-up" data-aos-delay="400">
<h3 style="color: var(--primary-color); margin-bottom: 1rem;">支付宝赞助</h3>
<div class="qrcode-single">
<img src="Alipay.jpeg" alt="支付宝收款码">
</div>
<p style="color: #7f8c8d; font-size: 0.9rem;">扫码或长按识别二维码</p>
</div>
<div class="crypto-card" data-aos="fade-up" data-aos-delay="600">
<h3 class="crypto-title">加密货币赞助</h3>
<div class="crypto-options">
<div class="crypto-option">
<div class="crypto-name">USDT (Tron 链)</div>
<div class="crypto-address-container">
<div class="crypto-address">THvzoYmjMRTqJfTveTgevxK7vZsjfqugTi</div>
<button class="copy-btn" aria-label="复制地址">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>
</svg>
</button>
<div class="copy-success">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 4px;">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
复制成功
</div>
</div>
</div>
<div class="crypto-option">
<div class="crypto-name">BitCoin (Taproot 链)</div>
<div class="crypto-address-container">
<div class="crypto-address">bc1ph7k55dwgxp6s3qs9zq8h3xwu28dxuhlq3jdqqq0nfzdsc0rh0xasx4kg9t</div>
<button class="copy-btn" aria-label="复制地址">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect>
<path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>
</svg>
</button>
<div class="copy-success">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="margin-right: 4px;">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
复制成功
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 新增页脚 -->
<footer class="footer" data-aos="fade-up" data-aos-delay="800">
<p>
Made by: <a href="https://github.com/TomChicken-on-github" target="_blank" rel="noopener noreferrer">Tom_Chicken</a> |
基于项目 <a href="https://github.com/TomChicken-on-github/Neko-Sponsor-Page" target="_blank" rel="noopener noreferrer">Neko-Sponsor-Page</a>
</p>
</footer>
</div>
<!-- 简化后的弹窗结构 -->
<div class="modal">
<div class="modal-content" data-aos="zoom-in-up" data-aos-duration="400">
<div class="modal-img-container">
<img class="modal-img" src="" alt="放大二维码">
<button class="close-btn">×</button>
</div>
</div>
</div>
<script src="https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/aos/2.3.4/aos.js"></script>
<script src="scripts.js"></script>
</body>
</html>