ERROR418 commited on
Commit
c3fff35
·
verified ·
1 Parent(s): cba0a11

Update about.html

Browse files
Files changed (1) hide show
  1. about.html +314 -321
about.html CHANGED
@@ -1,322 +1,315 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-CN">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>不会玩电路的红石 - 公益AI平台</title>
7
- <link rel="icon" href="https://i.imgur.com/zFvVXeB.png">
8
- <style>
9
- :root {
10
- --neon-green: #00ff88;
11
- --neon-purple: #bc13fe;
12
- --cyber-blue: #0066ff;
13
- --dark-bg: #0a0a12;
14
- --grid-color: rgba(0, 255, 136, 0.1);
15
- }
16
-
17
- * {
18
- margin: 0;
19
- padding: 0;
20
- box-sizing: border-box;
21
- font-family: 'Segoe UI', system-ui;
22
- }
23
-
24
- body {
25
- background: var(--dark-bg);
26
- color: white;
27
- position: relative;
28
- overflow-x: hidden;
29
- scroll-behavior: smooth;
30
- }
31
-
32
- /* 赛博背景 */
33
- .cyber-bg {
34
- position: fixed;
35
- top: 0;
36
- left: 0;
37
- width: 100%;
38
- height: 100%;
39
- z-index: -2;
40
- background:
41
- linear-gradient(45deg, var(--cyber-blue) 0%, transparent 50%),
42
- linear-gradient(-45deg, var(--neon-purple) 0%, transparent 50%),
43
- var(--dark-bg);
44
- animation: bgMove 20s linear infinite;
45
- background-size: 200% 200%;
46
- }
47
-
48
- .cyber-grid {
49
- position: fixed;
50
- top: 0;
51
- left: 0;
52
- width: 100%;
53
- height: 100%;
54
- background-image:
55
- linear-gradient(var(--grid-color) 1px, transparent 1px),
56
- linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
57
- background-size: 30px 30px;
58
- z-index: -1;
59
- opacity: 0.3;
60
- }
61
-
62
- /* 头部区域 */
63
- .hero {
64
- height: 100vh;
65
- display: flex;
66
- align-items: center;
67
- justify-content: center;
68
- flex-direction: column;
69
- padding: 20px;
70
- position: relative;
71
- }
72
-
73
- .logo {
74
- width: 150px;
75
- height: 150px;
76
- margin-bottom: 30px;
77
- animation: float 3s ease-in-out infinite;
78
- border: 2px solid var(--neon-green);
79
- border-radius: 50%;
80
- box-shadow: 0 0 30px var(--neon-green);
81
- }
82
-
83
- .nav-buttons {
84
- margin: 40px 0;
85
- display: flex;
86
- gap: 25px;
87
- flex-wrap: wrap;
88
- justify-content: center;
89
- }
90
-
91
- .btn {
92
- padding: 12px 35px;
93
- border: 2px solid var(--neon-green);
94
- border-radius: 30px;
95
- color: var(--neon-green);
96
- text-decoration: none;
97
- transition: all 0.3s;
98
- background: rgba(0, 0, 0, 0.3);
99
- backdrop-filter: blur(5px);
100
- display: flex;
101
- align-items: center;
102
- gap: 8px;
103
- }
104
-
105
- .btn:hover {
106
- background: var(--neon-green);
107
- color: var(--dark-bg);
108
- box-shadow: 0 0 30px var(--neon-green);
109
- }
110
-
111
- /* 内容区块 */
112
- .section {
113
- padding: 80px 20px;
114
- position: relative;
115
- }
116
-
117
- .section-title {
118
- text-align: center;
119
- margin-bottom: 50px;
120
- font-size: 2.2em;
121
- text-shadow: 0 0 15px var(--neon-green);
122
- }
123
-
124
- /* 高亮框 */
125
- .highlight-box {
126
- background: rgba(0, 255, 136, 0.1);
127
- border: 1px solid var(--neon-green);
128
- padding: 25px;
129
- border-radius: 15px;
130
- margin: 30px auto;
131
- max-width: 800px;
132
- }
133
-
134
- /* 卡片布局 */
135
- .grid {
136
- display: grid;
137
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
138
- gap: 25px;
139
- max-width: 1200px;
140
- margin: 0 auto;
141
- }
142
-
143
- .card {
144
- background: rgba(10, 10, 18, 0.7);
145
- border: 1px solid var(--neon-green);
146
- border-radius: 15px;
147
- padding: 25px;
148
- transition: all 0.3s;
149
- backdrop-filter: blur(10px);
150
- }
151
-
152
- .card:hover {
153
- transform: translateY(-10px);
154
- box-shadow: 0 0 30px var(--neon-green);
155
- }
156
-
157
- /* 模型标签 */
158
- .model-tag {
159
- background: rgba(0, 255, 136, 0.15);
160
- padding: 8px 15px;
161
- border-radius: 20px;
162
- border: 1px solid var(--neon-green);
163
- }
164
-
165
- /* 注册方式 */
166
- .register-method {
167
- padding: 12px;
168
- margin: 10px 0;
169
- background: rgba(255, 255, 255, 0.05);
170
- border-radius: 8px;
171
- display: flex;
172
- align-items: center;
173
- gap: 10px;
174
- }
175
-
176
- /* 动画 */
177
- @keyframes float {
178
- 0%, 100% { transform: translateY(0); }
179
- 50% { transform: translateY(-20px); }
180
- }
181
-
182
- @keyframes bgMove {
183
- 0% { background-position: 0% 0%; }
184
- 50% { background-position: 100% 100%; }
185
- 100% { background-position: 0% 0%; }
186
- }
187
-
188
- @media (max-width: 768px) {
189
- .section-title {
190
- font-size: 1.8em;
191
- }
192
- .btn {
193
- padding: 10px 25px;
194
- }
195
- }
196
- </style>
197
- </head>
198
- <body>
199
- <div class="cyber-bg"></div>
200
- <div class="cyber-grid"></div>
201
-
202
- <section class="hero">
203
- <img src="https://error418-blog.hf.space/upload/%E5%A4%B4%E5%83%8F2.jpg"
204
- alt="avatar"
205
- class="logo">
206
- <h1 class="section-title">不会玩电路的红石</h1>
207
- <p class="daily-quote" style="font-size:1.1em;margin:20px 0;">「 让AI技术普惠每个人 」</p>
208
-
209
- <div class="nav-buttons">
210
- <a href="https://space.bilibili.com/522549816" class="btn" target="_blank">
211
- <img src="https://www.bilibili.com/favicon.ico" width="24" alt="B站">
212
- B站主页
213
- </a>
214
- <a href="https://error418-blog.hf.space" class="btn" target="_blank">
215
- 🌐 个人博客
216
- </a>
217
- </div>
218
- </section>
219
-
220
- <section class="section">
221
- <h2 class="section-title">🚀 公益AI平台</h2>
222
-
223
- <div class="highlight-box">
224
- <h3 style="color: var(--neon-green); margin-bottom: 15px;">🌟 平台特色</h3>
225
- <ul style="line-height: 2; list-style: none;">
226
- <li>► 模型价格 ≤ 市场价30%</li>
227
- <li>► 新用户注册即赠 $1 额度</li>
228
- <li>► 永久免费翻译服务 (0倍率)</li>
229
- <li>► 多平台账号互通</li>
230
- <li>► 免费的翻译服务</li>
231
- </ul>
232
- </div>
233
-
234
- <div class="grid" style="max-width: 1000px;">
235
- <div class="card">
236
- <h3 style="color: var(--neon-green);">免费翻译模型</h3>
237
- <div style="margin-top:20px; display: flex; flex-wrap: wrap; gap: 12px;">
238
- <span class="model-tag">DeepSeek-v3</span>
239
- <span class="model-tag">Doubao</span>
240
- <span class="model-tag">Qwen-72B</span>
241
- <span class="model-tag">GLM-3 Turbo</span>
242
- <span class="model-tag">Moonshot v1</span>
243
- </div>
244
- </div>
245
-
246
- <div class="card">
247
- <h3 style="color: var(--neon-green);">📝 注册登录</h3>
248
- <div style="margin-top: 20px;">
249
- <div class="register-method">
250
- <img src="https://mail.qq.com/zh_CN/htmledition/images/favicon/qqmail_favicon_96h.png" width="24" alt="QQ">
251
- QQ邮箱
252
- </div>
253
- <div class="register-method">
254
- <img src="https://tse2-mm.cn.bing.net/th/id/OIP-C.pOnicxSRbC8M0SdWCKDlJAHaHa?rs=1&pid=ImgDetMain" width="24" alt="GitHub">
255
- GitHub
256
- </div>
257
- <div class="register-method">
258
- <img src="https://www.outlook.com/owa/favicon.ico" width="24" alt="Outlook">
259
- Outlook
260
- </div>
261
- <div class="register-method">
262
- <img src="https://cdn.ldstatic.com/original/3X/9/d/9dd49731091ce8656e94433a26a3ef36062b3994.png" width="24" alt="Linux.do">
263
- Linux.do
264
- </div>
265
- </div>
266
- </div>
267
- </div>
268
- </section>
269
-
270
- <section class="section" style="background: rgba(0, 255, 136, 0.03);">
271
- <div class="highlight-box" style="text-align: center;">
272
- <h2 style="color: var(--neon-green);">🎁 加入官方QQ群</h2>
273
- <p style="margin: 20px 0; font-size: 1.1em;">
274
- 群号:<span style="color: var(--neon-green);">971947103</span><br>
275
- 进群可享:不定时免费额度 | 第一手消息 | 优先技术支持
276
- </p>
277
- <img src="qr.png"
278
- alt="QQ群二维码"
279
- style="width: 220px; margin: 0 auto; border-radius: 12px; border: 2px solid var(--neon-green);">
280
- </div>
281
- </section>
282
-
283
- <script>
284
- // 动态文字效果
285
- const quotes = [
286
- "开放 · 共享 · 创新",
287
- "让每个开发者都用得起AI",
288
- "技术不应该成为门槛",
289
- "始于热爱,成于坚持"
290
- ];
291
-
292
- function updateDailyQuote() {
293
- const element = document.querySelector('.daily-quote');
294
- const randomIndex = Math.floor(Math.random() * quotes.length);
295
- element.textContent = `「 ${quotes[randomIndex]} 」`;
296
- }
297
-
298
- // 初始化
299
- window.addEventListener('load', () => {
300
- updateDailyQuote();
301
- setInterval(updateDailyQuote, 5000);
302
-
303
- // 卡片入场动画
304
- const observer = new IntersectionObserver((entries) => {
305
- entries.forEach(entry => {
306
- if (entry.isIntersecting) {
307
- entry.target.style.opacity = 1;
308
- entry.target.style.transform = 'translateY(0)';
309
- }
310
- });
311
- });
312
-
313
- document.querySelectorAll('.card, .highlight-box').forEach(el => {
314
- el.style.opacity = 0;
315
- el.style.transform = 'translateY(30px)';
316
- el.style.transition = 'all 0.6s ease-out';
317
- observer.observe(el);
318
- });
319
- });
320
- </script>
321
- </body>
322
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>不会玩电路的红石 - 公益AI平台</title>
7
+ <link rel="icon" href="https://i.imgur.com/zFvVXeB.png">
8
+ <style>
9
+ :root {
10
+ --neon-green: #00ff88;
11
+ --neon-purple: #bc13fe;
12
+ --cyber-blue: #0066ff;
13
+ --dark-bg: #0a0a12;
14
+ --grid-color: rgba(0, 255, 136, 0.1);
15
+ }
16
+
17
+ * {
18
+ margin: 0;
19
+ padding: 0;
20
+ box-sizing: border-box;
21
+ font-family: 'Segoe UI', system-ui;
22
+ }
23
+
24
+ body {
25
+ background: var(--dark-bg);
26
+ color: white;
27
+ position: relative;
28
+ overflow-x: hidden;
29
+ scroll-behavior: smooth;
30
+ }
31
+
32
+ /* 赛博背景 */
33
+ .cyber-bg {
34
+ position: fixed;
35
+ top: 0;
36
+ left: 0;
37
+ width: 100%;
38
+ height: 100%;
39
+ z-index: -2;
40
+ background:
41
+ linear-gradient(45deg, var(--cyber-blue) 0%, transparent 50%),
42
+ linear-gradient(-45deg, var(--neon-purple) 0%, transparent 50%),
43
+ var(--dark-bg);
44
+ animation: bgMove 20s linear infinite;
45
+ background-size: 200% 200%;
46
+ }
47
+
48
+ .cyber-grid {
49
+ position: fixed;
50
+ top: 0;
51
+ left: 0;
52
+ width: 100%;
53
+ height: 100%;
54
+ background-image:
55
+ linear-gradient(var(--grid-color) 1px, transparent 1px),
56
+ linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
57
+ background-size: 30px 30px;
58
+ z-index: -1;
59
+ opacity: 0.3;
60
+ }
61
+
62
+ /* 头部区域 */
63
+ .hero {
64
+ height: 100vh;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ flex-direction: column;
69
+ padding: 20px;
70
+ position: relative;
71
+ }
72
+
73
+ .logo {
74
+ width: 150px;
75
+ height: 150px;
76
+ margin-bottom: 30px;
77
+ animation: float 3s ease-in-out infinite;
78
+ border: 2px solid var(--neon-green);
79
+ border-radius: 50%;
80
+ box-shadow: 0 0 30px var(--neon-green);
81
+ }
82
+
83
+ .nav-buttons {
84
+ margin: 40px 0;
85
+ display: flex;
86
+ gap: 25px;
87
+ flex-wrap: wrap;
88
+ justify-content: center;
89
+ }
90
+
91
+ .btn {
92
+ padding: 12px 35px;
93
+ border: 2px solid var(--neon-green);
94
+ border-radius: 30px;
95
+ color: var(--neon-green);
96
+ text-decoration: none;
97
+ transition: all 0.3s;
98
+ background: rgba(0, 0, 0, 0.3);
99
+ backdrop-filter: blur(5px);
100
+ display: flex;
101
+ align-items: center;
102
+ gap: 8px;
103
+ }
104
+
105
+ .btn:hover {
106
+ background: var(--neon-green);
107
+ color: var(--dark-bg);
108
+ box-shadow: 0 0 30px var(--neon-green);
109
+ }
110
+
111
+ /* 内容区块 */
112
+ .section {
113
+ padding: 80px 20px;
114
+ position: relative;
115
+ }
116
+
117
+ .section-title {
118
+ text-align: center;
119
+ margin-bottom: 50px;
120
+ font-size: 2.2em;
121
+ text-shadow: 0 0 15px var(--neon-green);
122
+ }
123
+
124
+ /* 高亮框 */
125
+ .highlight-box {
126
+ background: rgba(0, 255, 136, 0.1);
127
+ border: 1px solid var(--neon-green);
128
+ padding: 25px;
129
+ border-radius: 15px;
130
+ margin: 30px auto;
131
+ max-width: 800px;
132
+ }
133
+
134
+ /* 卡片布局 */
135
+ .grid {
136
+ display: grid;
137
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
138
+ gap: 25px;
139
+ max-width: 1200px;
140
+ margin: 0 auto;
141
+ }
142
+
143
+ .card {
144
+ background: rgba(10, 10, 18, 0.7);
145
+ border: 1px solid var(--neon-green);
146
+ border-radius: 15px;
147
+ padding: 25px;
148
+ transition: all 0.3s;
149
+ backdrop-filter: blur(10px);
150
+ }
151
+
152
+ .card:hover {
153
+ transform: translateY(-10px);
154
+ box-shadow: 0 0 30px var(--neon-green);
155
+ }
156
+
157
+ /* 模型标签 */
158
+ .model-tag {
159
+ background: rgba(0, 255, 136, 0.15);
160
+ padding: 8px 15px;
161
+ border-radius: 20px;
162
+ border: 1px solid var(--neon-green);
163
+ }
164
+
165
+ /* 注册方式 */
166
+ .register-method {
167
+ padding: 12px;
168
+ margin: 10px 0;
169
+ background: rgba(255, 255, 255, 0.05);
170
+ border-radius: 8px;
171
+ display: flex;
172
+ align-items: center;
173
+ gap: 10px;
174
+ }
175
+
176
+ /* 动画 */
177
+ @keyframes float {
178
+ 0%, 100% { transform: translateY(0); }
179
+ 50% { transform: translateY(-20px); }
180
+ }
181
+
182
+ @keyframes bgMove {
183
+ 0% { background-position: 0% 0%; }
184
+ 50% { background-position: 100% 100%; }
185
+ 100% { background-position: 0% 0%; }
186
+ }
187
+
188
+ @media (max-width: 768px) {
189
+ .section-title {
190
+ font-size: 1.8em;
191
+ }
192
+ .btn {
193
+ padding: 10px 25px;
194
+ }
195
+ }
196
+ </style>
197
+ </head>
198
+ <body>
199
+ <div class="cyber-bg"></div>
200
+ <div class="cyber-grid"></div>
201
+
202
+ <section class="hero">
203
+ <img src="https://error418-blog.hf.space/upload/%E5%A4%B4%E5%83%8F2.jpg"
204
+ alt="avatar"
205
+ class="logo">
206
+ <h1 class="section-title">不会玩电路的红石</h1>
207
+ <p class="daily-quote" style="font-size:1.1em;margin:20px 0;">「 让AI技术普惠每个人 」</p>
208
+
209
+ <div class="nav-buttons">
210
+ <a href="https://space.bilibili.com/522549816" class="btn" target="_blank">
211
+ <img src="https://www.bilibili.com/favicon.ico" width="24" alt="B站">
212
+ B站主页
213
+ </a>
214
+ <a href="https://error418-blog.hf.space" class="btn" target="_blank">
215
+ 🌐 个人博客
216
+ </a>
217
+ </div>
218
+ </section>
219
+
220
+ <section class="section">
221
+ <h2 class="section-title">🚀 公益AI平台</h2>
222
+
223
+ <div class="highlight-box">
224
+ <h3 style="color: var(--neon-green); margin-bottom: 15px;">🌟 平台特色</h3>
225
+ <ul style="line-height: 2; list-style: none;">
226
+ <li>► 模型价格 ≤ 市场价30%</li>
227
+ <li>► 新用户注册即赠 $1 额度</li>
228
+ <li>► 永久免费翻译服务 (0倍率)</li>
229
+ <li>► 多平台账号互通</li>
230
+ <li>► 免费的翻译服务</li>
231
+ </ul>
232
+ </div>
233
+
234
+ <div class="grid" style="max-width: 1000px;">
235
+ <div class="card">
236
+ <h3 style="color: var(--neon-green);">免费翻译模型</h3>
237
+ <div style="margin-top:20px; display: flex; flex-wrap: wrap; gap: 12px;">
238
+ <span class="model-tag">DeepSeek-v3</span>
239
+ <span class="model-tag">Doubao</span>
240
+ <span class="model-tag">Qwen-72B</span>
241
+ <span class="model-tag">GLM-3 Turbo</span>
242
+ <span class="model-tag">Moonshot v1</span>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="card">
247
+ <h3 style="color: var(--neon-green);">📝 注册登录</h3>
248
+ <div style="margin-top: 20px;">
249
+ <div class="register-method">
250
+ <img src="https://tse2-mm.cn.bing.net/th/id/OIP-C.pOnicxSRbC8M0SdWCKDlJAHaHa?rs=1&pid=ImgDetMain" width="24" alt="GitHub">
251
+ GitHub
252
+ <div class="register-method">
253
+ <img src="https://cdn.ldstatic.com/original/3X/9/d/9dd49731091ce8656e94433a26a3ef36062b3994.png" width="24" alt="Linux.do">
254
+ Linux.do
255
+ </div>
256
+ <div>
257
+ 由于SMTP服务商跑路,只能用Linu.xo或者Github注册
258
+ </div>
259
+ </div>
260
+ </div>
261
+ </section>
262
+
263
+ <section class="section" style="background: rgba(0, 255, 136, 0.03);">
264
+ <div class="highlight-box" style="text-align: center;">
265
+ <h2 style="color: var(--neon-green);">🎁 加入官方QQ群</h2>
266
+ <p style="margin: 20px 0; font-size: 1.1em;">
267
+ 群号:<span style="color: var(--neon-green);">971947103</span><br>
268
+ 进群可享:不定时免费额度 | 第一手消息 | 优先技术支持
269
+ </p>
270
+ <img src="qr.png"
271
+ alt="QQ群二维码"
272
+ style="width: 220px; margin: 0 auto; border-radius: 12px; border: 2px solid var(--neon-green);">
273
+ </div>
274
+ </section>
275
+
276
+ <script>
277
+ // 动态文字效果
278
+ const quotes = [
279
+ "开放 · 共享 · 创新",
280
+ "让每个开发者都用得起AI",
281
+ "技术不应该成为门槛",
282
+ "始于热爱,成于坚持"
283
+ ];
284
+
285
+ function updateDailyQuote() {
286
+ const element = document.querySelector('.daily-quote');
287
+ const randomIndex = Math.floor(Math.random() * quotes.length);
288
+ element.textContent = `「 ${quotes[randomIndex]} 」`;
289
+ }
290
+
291
+ // 初始化
292
+ window.addEventListener('load', () => {
293
+ updateDailyQuote();
294
+ setInterval(updateDailyQuote, 5000);
295
+
296
+ // 卡片入场动画
297
+ const observer = new IntersectionObserver((entries) => {
298
+ entries.forEach(entry => {
299
+ if (entry.isIntersecting) {
300
+ entry.target.style.opacity = 1;
301
+ entry.target.style.transform = 'translateY(0)';
302
+ }
303
+ });
304
+ });
305
+
306
+ document.querySelectorAll('.card, .highlight-box').forEach(el => {
307
+ el.style.opacity = 0;
308
+ el.style.transform = 'translateY(30px)';
309
+ el.style.transition = 'all 0.6s ease-out';
310
+ observer.observe(el);
311
+ });
312
+ });
313
+ </script>
314
+ </body>
 
 
 
 
 
 
 
315
  </html>