pixelx commited on
Commit
095d2d7
·
verified ·
1 Parent(s): e4fc3de

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +488 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: About Me
3
- emoji: 📈
4
- colorFrom: pink
5
  colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: about-me
3
+ emoji: 🐳
4
+ colorFrom: blue
5
  colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,488 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </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>新视界 | 赛博朋克设计师</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap');
11
+
12
+ :root {
13
+ --neon-pink: #ff2a6d;
14
+ --neon-blue: #05d9e8;
15
+ --neon-purple: #d300c5;
16
+ --dark-bg: #0d0221;
17
+ }
18
+
19
+ body {
20
+ font-family: 'Rajdhani', sans-serif;
21
+ background-color: var(--dark-bg);
22
+ color: white;
23
+ overflow-x: hidden;
24
+ }
25
+
26
+ h1, h2, h3 {
27
+ font-family: 'Orbitron', sans-serif;
28
+ }
29
+
30
+ .neon-text-pink {
31
+ color: var(--neon-pink);
32
+ text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
33
+ }
34
+
35
+ .neon-text-blue {
36
+ color: var(--neon-blue);
37
+ text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
38
+ }
39
+
40
+ .neon-border-pink {
41
+ border: 1px solid var(--neon-pink);
42
+ box-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
43
+ }
44
+
45
+ .neon-border-blue {
46
+ border: 1px solid var(--neon-blue);
47
+ box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
48
+ }
49
+
50
+ .glow-on-hover:hover {
51
+ text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
52
+ }
53
+
54
+ .scanline {
55
+ position: relative;
56
+ overflow: hidden;
57
+ }
58
+
59
+ .scanline::after {
60
+ content: "";
61
+ position: absolute;
62
+ top: 0;
63
+ left: 0;
64
+ right: 0;
65
+ height: 1px;
66
+ background: rgba(5, 217, 232, 0.3);
67
+ animation: scan 8s linear infinite;
68
+ }
69
+
70
+ @keyframes scan {
71
+ 0% { top: 0%; }
72
+ 100% { top: 100%; }
73
+ }
74
+
75
+ .grid-pattern {
76
+ background-image:
77
+ linear-gradient(rgba(5, 217, 232, 0.1) 1px, transparent 1px),
78
+ linear-gradient(90deg, rgba(5, 217, 232, 0.1) 1px, transparent 1px);
79
+ background-size: 20px 20px;
80
+ }
81
+
82
+ .terminal-cursor::after {
83
+ content: "|";
84
+ animation: blink 1s step-end infinite;
85
+ color: var(--neon-blue);
86
+ }
87
+
88
+ @keyframes blink {
89
+ from, to { opacity: 1; }
90
+ 50% { opacity: 0; }
91
+ }
92
+ </style>
93
+ </head>
94
+ <body class="min-h-screen grid-pattern">
95
+ <!-- 故障效果背景 -->
96
+ <div class="fixed inset-0 opacity-10 z-0" id="glitch-bg"></div>
97
+
98
+ <!-- 主容器 -->
99
+ <div class="container mx-auto px-4 py-8 relative z-10">
100
+ <!-- 页眉 -->
101
+ <header class="flex flex-col md:flex-row justify-between items-center mb-12 p-6 neon-border-pink rounded-lg bg-black bg-opacity-70 backdrop-blur-sm">
102
+ <div class="flex items-center mb-4 md:mb-0">
103
+ <div class="w-16 h-16 rounded-full neon-border-blue bg-black mr-4 flex items-center justify-center">
104
+ <i class="fas fa-user-astronaut text-3xl neon-text-blue"></i>
105
+ </div>
106
+ <div>
107
+ <h1 class="text-3xl md:text-4xl font-bold neon-text-pink">新视界</h1>
108
+ <p class="text-lg neon-text-blue">数字设计 // 未来界面</p>
109
+ </div>
110
+ </div>
111
+
112
+ <nav class="flex space-x-1 md:space-x-6">
113
+ <a href="#work" class="px-3 py-2 glow-on-hover neon-text-blue hover:neon-text-pink transition-all duration-300">作品</a>
114
+ <a href="#about" class="px-3 py-2 glow-on-hover neon-text-blue hover:neon-text-pink transition-all duration-300">关于</a>
115
+ <a href="#contact" class="px-3 py-2 glow-on-hover neon-text-blue hover:neon-text-pink transition-all duration-300">联系</a>
116
+ </nav>
117
+ </header>
118
+
119
+ <!-- 英雄区域 -->
120
+ <section class="mb-20 p-8 neon-border-blue rounded-lg bg-black bg-opacity-70 backdrop-blur-sm scanline relative">
121
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center">
122
+ <div>
123
+ <h2 class="text-4xl md:text-6xl font-bold mb-4 neon-text-pink">设计<span class="neon-text-blue">未来</span></h2>
124
+ <p class="text-xl mb-6 text-gray-300">在科技与人文的交汇处创造沉浸式数字体验</p>
125
+
126
+ <div class="terminal bg-black p-4 rounded neon-border-blue mb-6 font-mono">
127
+ <div class="flex items-center mb-2">
128
+ <span class="w-3 h-3 rounded-full bg-red-500 mr-2"></span>
129
+ <span class="w-3 h-3 rounded-full bg-yellow-500 mr-2"></span>
130
+ <span class="w-3 h-3 rounded-full bg-green-500 mr-2"></span>
131
+ <span class="text-sm neon-text-blue">终端</span>
132
+ </div>
133
+ <div class="mb-1"><span class="neon-text-blue">$</span> <span class="text-gray-300">我是谁</span></div>
134
+ <div id="terminal-text" class="terminal-cursor">赛博设计师.exe</div>
135
+ </div>
136
+
137
+ <div class="flex space-x-4">
138
+ <button class="px-6 py-3 bg-gradient-to-r from-pink-600 to-blue-600 rounded-lg font-bold hover:opacity-90 transition-all duration-300 flex items-center">
139
+ <i class="fas fa-rocket mr-2"></i> 探索作品
140
+ </button>
141
+ <button class="px-6 py-3 neon-border-blue rounded-lg font-bold neon-text-blue hover:bg-blue-900 hover:bg-opacity-30 transition-all duration-300 flex items-center">
142
+ <i class="fas fa-terminal mr-2"></i> 联系我
143
+ </button>
144
+ </div>
145
+ </div>
146
+
147
+ <div class="relative">
148
+ <div class="absolute -inset-4 neon-border-pink rounded-lg animate-pulse opacity-30"></div>
149
+ <div class="relative bg-black p-2 rounded-lg neon-border-blue">
150
+ <img src="https://images.unsplash.com/photo-1639762681057-408e52192e55?q=80&w=2232&auto=format&fit=crop" alt="赛博朋克城市" class="w-full h-auto rounded">
151
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
152
+ <p class="neon-text-pink text-sm">当前项目: <span class="neon-text-blue">霓虹街区UI套件</span></p>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </div>
157
+ </section>
158
+
159
+ <!-- 作品区域 -->
160
+ <section id="work" class="mb-20">
161
+ <h2 class="text-3xl font-bold mb-8 neon-text-pink flex items-center">
162
+ <span class="w-8 h-1 bg-pink-500 mr-4"></span>
163
+ 近期作品
164
+ </h2>
165
+
166
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
167
+ <!-- 项目1 -->
168
+ <div class="bg-black bg-opacity-70 rounded-lg overflow-hidden neon-border-blue hover:neon-border-pink transition-all duration-500 group">
169
+ <div class="relative h-48 overflow-hidden">
170
+ <img src="https://images.unsplash.com/photo-1547658719-da2b51169166?q=80&w=2264&auto=format&fit=crop" alt="项目1" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
171
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
172
+ <div class="absolute bottom-0 left-0 p-4">
173
+ <h3 class="text-xl font-bold neon-text-blue group-hover:neon-text-pink transition-all duration-300">霓虹界面系统</h3>
174
+ <p class="text-sm text-gray-300">UI/UX设计</p>
175
+ </div>
176
+ </div>
177
+ <div class="p-4">
178
+ <p class="text-gray-300 mb-4">为未来风格用户界面打造的模块化综合设计系统</p>
179
+ <div class="flex flex-wrap gap-2">
180
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">UI设计</span>
181
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">Figma</span>
182
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">After Effects</span>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <!-- 项目2 -->
188
+ <div class="bg-black bg-opacity-70 rounded-lg overflow-hidden neon-border-blue hover:neon-border-pink transition-all duration-500 group">
189
+ <div class="relative h-48 overflow-hidden">
190
+ <img src="https://images.unsplash.com/photo-1551650975-87deedd944c3?q=80&w=2274&auto=format&fit=crop" alt="项目2" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
191
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
192
+ <div class="absolute bottom-0 left-0 p-4">
193
+ <h3 class="text-xl font-bold neon-text-blue group-hover:neon-text-pink transition-all duration-300">赛博城市品牌</h3>
194
+ <p class="text-sm text-gray-300">品牌形象</p>
195
+ </div>
196
+ </div>
197
+ <div class="p-4">
198
+ <p class="text-gray-300 mb-4">为赛博朋克风格科技初创公司打造的完整视觉形象,包括标志、字体和动态图形</p>
199
+ <div class="flex flex-wrap gap-2">
200
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">品牌设计</span>
201
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">Illustrator</span>
202
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">Blender</span>
203
+ </div>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- 项目3 -->
208
+ <div class="bg-black bg-opacity-70 rounded-lg overflow-hidden neon-border-blue hover:neon-border-pink transition-all duration-500 group">
209
+ <div class="relative h-48 overflow-hidden">
210
+ <img src="https://images.unsplash.com/photo-1635070041078-e363dbe005cb?q=80&w=2274&auto=format&fit=crop" alt="项目3" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
211
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-70"></div>
212
+ <div class="absolute bottom-0 left-0 p-4">
213
+ <h3 class="text-xl font-bold neon-text-blue group-hover:neon-text-pink transition-all duration-300">虚拟现实仪表盘</h3>
214
+ <p class="text-sm text-gray-300">XR界面</p>
215
+ </div>
216
+ </div>
217
+ <div class="p-4">
218
+ <p class="text-gray-300 mb-4">为虚拟现实生产力应用设计的沉浸式仪表盘,具有空间交互功能</p>
219
+ <div class="flex flex-wrap gap-2">
220
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">XR设计</span>
221
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">Unity</span>
222
+ <span class="text-xs px-2 py-1 rounded neon-border-blue neon-text-blue">3D建模</span>
223
+ </div>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </section>
228
+
229
+ <!-- 关于区域 -->
230
+ <section id="about" class="mb-20 p-8 neon-border-pink rounded-lg bg-black bg-opacity-70 backdrop-blur-sm">
231
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
232
+ <div>
233
+ <h2 class="text-3xl font-bold mb-6 neon-text-blue flex items-center">
234
+ <span class="w-8 h-1 bg-blue-500 mr-4"></span>
235
+ 关于设计师
236
+ </h2>
237
+ <p class="text-gray-300 mb-4 leading-relaxed">
238
+ 我是一名专注于未来界面、赛博朋克美学和沉浸式体验的数字设计师。在行业深耕8年,曾与科技初创公司、游戏工作室和创新品牌合作,创造突破界限的视觉作品。
239
+ </p>
240
+ <p class="text-gray-300 mb-6 leading-relaxed">
241
+ 我的设计方法结合前沿设计原则与复古未来主义灵感,打造既先进又充满怀旧感的界面。不设计时,你可以在VR世界中找到我,或者看我捣鼓创意编程项目。
242
+ </p>
243
+
244
+ <div class="mb-8">
245
+ <h3 class="text-xl font-bold neon-text-pink mb-4">技能矩阵</h3>
246
+ <div class="space-y-3">
247
+ <div>
248
+ <div class="flex justify-between mb-1">
249
+ <span class="text-gray-300">UI/UX设计</span>
250
+ <span class="neon-text-blue">95%</span>
251
+ </div>
252
+ <div class="w-full bg-gray-800 rounded-full h-2">
253
+ <div class="bg-gradient-to-r from-pink-500 to-blue-500 h-2 rounded-full" style="width: 95%"></div>
254
+ </div>
255
+ </div>
256
+ <div>
257
+ <div class="flex justify-between mb-1">
258
+ <span class="text-gray-300">动态图形</span>
259
+ <span class="neon-text-blue">85%</span>
260
+ </div>
261
+ <div class="w-full bg-gray-800 rounded-full h-2">
262
+ <div class="bg-gradient-to-r from-pink-500 to-blue-500 h-2 rounded-full" style="width: 85%"></div>
263
+ </div>
264
+ </div>
265
+ <div>
266
+ <div class="flex justify-between mb-1">
267
+ <span class="text-gray-300">3D建模</span>
268
+ <span class="neon-text-blue">75%</span>
269
+ </div>
270
+ <div class="w-full bg-gray-800 rounded-full h-2">
271
+ <div class="bg-gradient-to-r from-pink-500 to-blue-500 h-2 rounded-full" style="width: 75%"></div>
272
+ </div>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <div class="relative">
279
+ <div class="absolute -inset-4 neon-border-blue rounded-lg animate-pulse opacity-30"></div>
280
+ <div class="relative bg-black p-1 rounded-lg neon-border-pink overflow-hidden">
281
+ <div class="aspect-w-1 aspect-h-1">
282
+ <img src="https://images.unsplash.com/photo-1517841905240-472988babdf9?q=80&w=2187&auto=format&fit=crop" alt="设计师肖像" class="w-full h-full object-cover">
283
+ </div>
284
+ <div class="absolute bottom-0 left-0 right-0 bg-gradient-to-t from-black to-transparent p-4">
285
+ <div class="flex items-center">
286
+ <div class="mr-3">
287
+ <div class="w-12 h-12 rounded-full neon-border-blue bg-black flex items-center justify-center">
288
+ <i class="fas fa-code text-xl neon-text-blue"></i>
289
+ </div>
290
+ </div>
291
+ <div>
292
+ <p class="neon-text-pink font-bold">设计 + 编程</p>
293
+ <p class="text-xs text-gray-300">混合设计师-开发者工作流</p>
294
+ </div>
295
+ </div>
296
+ </div>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </section>
301
+
302
+ <!-- 联系区域 -->
303
+ <section id="contact" class="mb-20">
304
+ <h2 class="text-3xl font-bold mb-8 neon-text-blue flex items-center">
305
+ <span class="w-8 h-1 bg-blue-500 mr-4"></span>
306
+ 与我联系
307
+ </h2>
308
+
309
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
310
+ <div class="bg-black bg-opacity-70 p-8 rounded-lg neon-border-blue">
311
+ <h3 class="text-2xl font-bold neon-text-pink mb-6">发送消息</h3>
312
+
313
+ <form class="space-y-4">
314
+ <div>
315
+ <label for="name" class="block text-gray-300 mb-2">您的姓名</label>
316
+ <input type="text" id="name" class="w-full px-4 py-3 bg-gray-900 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500" placeholder="输入您的姓名">
317
+ </div>
318
+ <div>
319
+ <label for="email" class="block text-gray-300 mb-2">电子邮箱</label>
320
+ <input type="email" id="email" class="w-full px-4 py-3 bg-gray-900 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500" placeholder="[email protected]">
321
+ </div>
322
+ <div>
323
+ <label for="message" class="block text-gray-300 mb-2">消息内容</label>
324
+ <textarea id="message" rows="5" class="w-full px-4 py-3 bg-gray-900 border border-gray-700 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent text-white placeholder-gray-500" placeholder="您有什么想法?"></textarea>
325
+ </div>
326
+ <button type="submit" class="w-full px-6 py-3 bg-gradient-to-r from-pink-600 to-blue-600 rounded-lg font-bold text-white hover:opacity-90 transition-all duration-300 flex items-center justify-center">
327
+ <i class="fas fa-paper-plane mr-2"></i> 发送消息
328
+ </button>
329
+ </form>
330
+ </div>
331
+
332
+ <div class="bg-black bg-opacity-70 p-8 rounded-lg neon-border-pink">
333
+ <h3 class="text-2xl font-bold neon-text-blue mb-6">其他渠道</h3>
334
+
335
+ <div class="space-y-6">
336
+ <div class="flex items-center">
337
+ <div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-30 flex items-center justify-center mr-4 neon-border-blue">
338
+ <i class="fab fa-twitter text-xl neon-text-blue"></i>
339
+ </div>
340
+ <div>
341
+ <p class="text-gray-300">关注获取设计见解</p>
342
+ <a href="#" class="neon-text-pink hover:underline">@新视界设计</a>
343
+ </div>
344
+ </div>
345
+
346
+ <div class="flex items-center">
347
+ <div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-30 flex items-center justify-center mr-4 neon-border-blue">
348
+ <i class="fab fa-dribbble text-xl neon-text-blue"></i>
349
+ </div>
350
+ <div>
351
+ <p class="text-gray-300">查看我的作品集</p>
352
+ <a href="#" class="neon-text-pink hover:underline">dribbble.com/新视界</a>
353
+ </div>
354
+ </div>
355
+
356
+ <div class="flex items-center">
357
+ <div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-30 flex items-center justify-center mr-4 neon-border-blue">
358
+ <i class="fab fa-github text-xl neon-text-blue"></i>
359
+ </div>
360
+ <div>
361
+ <p class="text-gray-300">开源项目</p>
362
+ <a href="#" class="neon-text-pink hover:underline">github.com/新视界</a>
363
+ </div>
364
+ </div>
365
+
366
+ <div class="flex items-center">
367
+ <div class="w-12 h-12 rounded-full bg-blue-900 bg-opacity-30 flex items-center justify-center mr-4 neon-border-blue">
368
+ <i class="fas fa-envelope text-xl neon-text-blue"></i>
369
+ </div>
370
+ <div>
371
+ <p class="text-gray-300">直接联系</p>
372
+ <a href="#" class="neon-text-pink hover:underline">contact@新视界.design</a>
373
+ </div>
374
+ </div>
375
+ </div>
376
+
377
+ <div class="mt-8 pt-6 border-t border-gray-800">
378
+ <h4 class="text-lg font-bold neon-text-blue mb-4">项目接收状态</h4>
379
+ <div class="flex items-center">
380
+ <div class="w-3 h-3 rounded-full bg-green-500 mr-3 animate-pulse"></div>
381
+ <p class="text-gray-300">目前接受2023年第三季度新项目</p>
382
+ </div>
383
+ </div>
384
+ </div>
385
+ </div>
386
+ </section>
387
+
388
+ <!-- 页脚 -->
389
+ <footer class="py-8 border-t border-gray-800 text-center">
390
+ <div class="flex justify-center space-x-6 mb-6">
391
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-900 hover:bg-opacity-30 transition-all duration-300 neon-text-blue hover:neon-text-pink">
392
+ <i class="fab fa-behance"></i>
393
+ </a>
394
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-900 hover:bg-opacity-30 transition-all duration-300 neon-text-blue hover:neon-text-pink">
395
+ <i class="fab fa-linkedin-in"></i>
396
+ </a>
397
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-900 hover:bg-opacity-30 transition-all duration-300 neon-text-blue hover:neon-text-pink">
398
+ <i class="fab fa-instagram"></i>
399
+ </a>
400
+ <a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-900 hover:bg-opacity-30 transition-all duration-300 neon-text-blue hover:neon-text-pink">
401
+ <i class="fab fa-discord"></i>
402
+ </a>
403
+ </div>
404
+ <p class="text-gray-500 text-sm">© 2023 新视界设计. 保留所有权利</p>
405
+ <p class="text-gray-600 text-xs mt-2">在赛博朋克时代 <i class="fas fa-heart text-pink-500"></i> 精心设计</p>
406
+ </footer>
407
+ </div>
408
+
409
+ <script>
410
+ // 终端打字效果
411
+ const terminalText = document.getElementById('terminal-text');
412
+ const texts = [
413
+ "赛博设计师.exe",
414
+ "界面专家.sys",
415
+ "未来界面.dev",
416
+ "视觉未来.dll"
417
+ ];
418
+ let currentTextIndex = 0;
419
+ let charIndex = 0;
420
+ let isDeleting = false;
421
+ let typingSpeed = 100;
422
+
423
+ function type() {
424
+ const currentText = texts[currentTextIndex];
425
+
426
+ if (isDeleting) {
427
+ terminalText.textContent = currentText.substring(0, charIndex - 1);
428
+ charIndex--;
429
+ typingSpeed = 50;
430
+ } else {
431
+ terminalText.textContent = currentText.substring(0, charIndex + 1);
432
+ charIndex++;
433
+ typingSpeed = 100;
434
+ }
435
+
436
+ if (!isDeleting && charIndex === currentText.length) {
437
+ isDeleting = true;
438
+ typingSpeed = 1500; // 文本末尾暂停
439
+ } else if (isDeleting && charIndex === 0) {
440
+ isDeleting = false;
441
+ currentTextIndex = (currentTextIndex + 1) % texts.length;
442
+ typingSpeed = 500; // 输入下个文本前暂停
443
+ }
444
+
445
+ setTimeout(type, typingSpeed);
446
+ }
447
+
448
+ // 开始打字效果
449
+ setTimeout(type, 1000);
450
+
451
+ // 故障背景效果
452
+ const glitchBg = document.getElementById('glitch-bg');
453
+ let glitchInterval;
454
+
455
+ function startGlitch() {
456
+ glitchInterval = setInterval(() => {
457
+ const glitchChance = Math.random();
458
+ if (glitchChance > 0.7) {
459
+ glitchBg.style.background = `linear-gradient(${Math.random() * 360}deg, rgba(${Math.floor(Math.random() * 255)}, ${Math.floor(Math.random() * 255)}, ${Math.floor(Math.random() * 255)}, 0.1), rgba(${Math.floor(Math.random() * 255)}, ${Math.floor(Math.random() * 255)}, ${Math.floor(Math.random() * 255)}, 0.1))`;
460
+ glitchBg.style.clipPath = `polygon(0 0, ${Math.random() * 100}% 0, ${Math.random() * 100}% ${Math.random() * 100}%, 0 ${Math.random() * 100}%)`;
461
+
462
+ setTimeout(() => {
463
+ glitchBg.style.background = 'transparent';
464
+ glitchBg.style.clipPath = 'none';
465
+ }, 100);
466
+ }
467
+ }, 500);
468
+ }
469
+
470
+ startGlitch();
471
+
472
+ // 链接霓虹悬停效果
473
+ document.querySelectorAll('a').forEach(link => {
474
+ link.addEventListener('mouseenter', () => {
475
+ if (link.classList.contains('glow-on-hover')) {
476
+ link.style.textShadow = `0 0 10px ${link.classList.contains('neon-text-blue') ? 'var(--neon-blue)' : 'var(--neon-pink)'}, 0 0 20px ${link.classList.contains('neon-text-blue') ? 'var(--neon-blue)' : 'var(--neon-pink)'}`;
477
+ }
478
+ });
479
+
480
+ link.addEventListener('mouseleave', () => {
481
+ if (link.classList.contains('glow-on-hover')) {
482
+ link.style.textShadow = link.classList.contains('neon-text-blue') ? '0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue)' : '0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink)';
483
+ }
484
+ });
485
+ });
486
+ </script>
487
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=pixelx/about-me" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body>
488
+ </html>