-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwtx.html
More file actions
567 lines (491 loc) · 16.9 KB
/
wtx.html
File metadata and controls
567 lines (491 loc) · 16.9 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* 基础样式与重置 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
html {
scroll-behavior: smooth;
}
body {
color: #1d1d1f;
background-color: #ffffff;
line-height: 1.5;
overflow-x: hidden;
}
a {
text-decoration: none;
color: #0066cc;
transition: color 0.3s;
}
a:hover {
color: #0077dd;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 22px;
}
/* 导航栏样式 */
nav {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
z-index: 1000;
padding: 16px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: 700;
color: #000;
}
.nav-links {
display: flex;
gap: 32px;
}
.nav-links a {
color: #1d1d1f;
font-size: 16px;
font-weight: 400;
}
.nav-links a:hover {
color: #0066cc;
}
/* 英雄区域样式 */
.hero {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding-top: 80px;
background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
}
.hero h1 {
font-size: 56px;
font-weight: 700;
margin-bottom: 16px;
background: linear-gradient(45deg, #0066cc, #0077dd);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.hero p {
font-size: 28px;
color: #86868b;
max-width: 700px;
margin-bottom: 32px;
}
.cta-button {
background: #0066cc;
color: white;
padding: 14px 30px;
border-radius: 30px;
font-size: 18px;
font-weight: 500;
transition: all 0.3s;
}
.cta-button:hover {
background: #0077dd;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}
/* 技能部分样式 */
.skills {
padding: 100px 0;
background-color: #fff;
}
.section-title {
text-align: center;
font-size: 40px;
font-weight: 700;
margin-bottom: 60px;
color: #1d1d1f;
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.skill-card {
background: #fff;
border-radius: 20px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.skill-card:hover {
transform: translateY(-10px);
}
.skill-icon {
font-size: 40px;
margin-bottom: 20px;
color: #0066cc;
}
.skill-title {
font-size: 22px;
font-weight: 600;
margin-bottom: 16px;
}
.skill-desc {
color: #86868b;
font-size: 16px;
}
/* 项目部分样式 */
.projects {
padding: 100px 0;
background-color: #f5f7fa;
}
.project-showcase {
display: flex;
flex-direction: column;
gap: 80px;
}
.project {
display: flex;
align-items: center;
gap: 50px;
}
.project:nth-child(even) {
flex-direction: row-reverse;
}
.project-image {
flex: 1;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.project-image img {
width: 100%;
height: auto;
display: block;
transition: transform 0.5s;
}
.project-image:hover img {
transform: scale(1.05);
}
.project-content {
flex: 1;
}
.project-title {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
}
.project-desc {
color: #86868b;
font-size: 18px;
margin-bottom: 30px;
}
/* 关于我部分样式 */
.about {
padding: 100px 0;
background-color: #fff;
}
.about-content {
display: flex;
align-items: center;
gap: 60px;
}
.about-text {
flex: 1;
}
.about-title {
font-size: 40px;
font-weight: 700;
margin-bottom: 30px;
}
.about-desc {
color: #86868b;
font-size: 18px;
margin-bottom: 30px;
line-height: 1.6;
}
.about-image {
flex: 1;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-image img {
width: 100%;
height: auto;
display: block;
}
/* 联系部分样式 */
.contact {
padding: 100px 0;
background-color: #f5f7fa;
text-align: center;
}
.contact-desc {
font-size: 20px;
color: #86868b;
max-width: 700px;
margin: 0 auto 40px;
}
.contact-buttons {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.contact-button {
background: #0066cc;
color: white;
padding: 16px 32px;
border-radius: 30px;
font-size: 18px;
font-weight: 500;
display: flex;
align-items: center;
gap: 10px;
transition: all 0.3s;
}
.contact-button:hover {
background: #0077dd;
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}
/* 页脚样式 */
footer {
background-color: #1d1d1f;
color: #fff;
padding: 60px 0 30px;
}
.footer-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
margin-bottom: 40px;
}
.footer-column {
flex: 1;
min-width: 200px;
}
.footer-column h3 {
font-size: 18px;
margin-bottom: 20px;
color: #fff;
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 12px;
}
.footer-column ul li a {
color: #86868b;
font-size: 16px;
}
.footer-column ul li a:hover {
color: #fff;
}
.copyright {
text-align: center;
color: #86868b;
padding-top: 30px;
border-top: 1px solid #333;
font-size: 14px;
}
/* 响应式设计 */
@media (max-width: 968px) {
.hero h1 {
font-size: 42px;
}
.hero p {
font-size: 22px;
}
.project, .project:nth-child(even) {
flex-direction: column;
}
.about-content {
flex-direction: column;
}
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 36px;
}
.hero p {
font-size: 18px;
}
.section-title {
font-size: 32px;
}
.contact-buttons {
flex-direction: column;
align-items: center;
}
}
</style>
</head>
<body>
<!-- 导航栏 -->
<nav>
<div class="container nav-container">
<a href="#" class="logo">WTX</a>
<div class="nav-links">
<a href="#skills">专业技能</a>
<a href="#projects">项目经验</a>
<a href="#about">关于我</a>
<a href="#contact">联系方式</a>
</div>
</div>
</nav>
<!-- 英雄区域 -->
<section class="hero">
<h1>欢迎来到我的个人网页</h1>
<p>Think different-非同凡想</p>
<a href="#contact" class="cta-button">联系我 <i class="fas fa-arrow-right"></i></a>
</section>
<!-- 技能部分 -->
<section class="skills" id="skills">
<div class="container">
<h2 class="section-title">专业技能</h2>
<div class="skills-grid">
<div class="skill-card">
<div class="skill-icon">
<i class="fas fa-code"></i>
</div>
<h3 class="skill-title">前端开发</h3>
<p class="skill-desc">精通HTML5, CSS3, JavaScript和现代前端框架如React和Vue,能够创建响应式、高性能的Web应用。</p>
</div>
<div class="skill-card">
<div class="skill-icon">
<i class="fas fa-paint-brush"></i>
</div>
<h3 class="skill-title">UI/UX设计</h3>
<p class="skill-desc">注重用户体验和界面设计,创建直观美观的设计方案。</p>
</div>
<div class="skill-card">
<div class="skill-icon">
<i class="fas fa-mobile-alt"></i>
</div>
<h3 class="skill-title">媒体开发</h3>
<p class="skill-desc">具有多媒体创作经验,确保一致的观感体验。</p>
</div>
</div>
</div>
</section>
<!-- 项目部分 -->
<section class="projects" id="projects">
<div class="container">
<h2 class="section-title">项目经验</h2>
<div class="project-showcase">
<div class="project">
<div class="project-image">
<img src="https://via.placeholder.com/600x400" alt="电子商务平台项目">
</div>
<div class="project-content">
<h3 class="project-title">关于合作</h3>
<p class="project-desc">擅长模块化合作将时间减少了40%,并提高了用户参与度。</p>
<a href="#" class="cta-button">查看详情</a>
</div>
</div>
<div class="project">
<div class="project-image">
<img src="https://via.placeholder.com/600x400" alt="健康应用项目">
</div>
<div class="project-content">
<h3 class="project-title">UI设计</h3>
<p class="project-desc">具有直观的用户界面和个性化推荐功能。</p>
<a href="#" class="cta-button">查看详情</a>
</div>
</div>
</div>
</div>
</section>
<!-- 关于我部分 -->
<section class="about" id="about">
<div class="container">
<div class="about-content">
<div class="about-text">
<h2 class="about-title">关于我</h2>
<p class="about-desc">我是一名充满激情的前端开发工程师和UI/UX设计师,我专注于创建直观、美观且功能强大的数字体验。</p>
<p class="about-desc">我的工作哲学是注重细节、持续学习并与客户紧密合作,以确保作品不仅满足而且超出期望。</p>
<a href="#contact" class="cta-button">了解更多</a>
</div>
<div class="about-image">
<img src="https://via.placeholder.com/600x500" alt="个人照片">
</div>
</div>
</div>
</section>
<!-- 联系部分 -->
<section class="contact" id="contact">
<div class="container">
<h2 class="section-title">与我联系</h2>
<p class="contact-desc">如果您有项目想法或合作机会,请随时与我联系。我期待与您讨论如何将您的愿景变为现实。</p>
<div class="contact-buttons">
<a href="mailto:13522567881@163.com(请备注来意)" class="contact-button">
<i class="fas fa-envelope"></i> 发送邮件
</a>
<a href="https://linkedin.com" class="contact-button">
<i class="fab fa-linkedin"></i> LinkedIn
</a>
<a href="https://github.com" class="contact-button">
<i class="fab fa-github"></i> GitHub
</a>
</div>
</div>
</section>
<!-- 页脚 -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-column">
<h3>John Doe</h3>
<ul>
<li><a href="#skills">专业技能</a></li>
<li><a href="#projects">项目经验</a></li>
<li><a href="#about">关于我</a></li>
</ul>
</div>
<div class="footer-column">
<h3>联系方式</h3>
<ul>
<li><a href="mailto:13522567881@163.com">13522567881@163.com(请备注来意)</a></li>
<li><a href="tel:+////">+1 (///) ///</a></li>
<li><a href="#">////</a></li>
<li><a href="#">抖音号WTXStudio</a></li>
</ul>
</div>
<div class="footer-column">
<h3>社交媒体</h3>
<ul>
<li><a href="https://linkedin.com">LinkedIn</a></li>
<li><a href="https://github.com">GitHub</a></li>
<li><a href="https://dribbble.com">Dribbble</a></li>
</ul>
</div>
</div>
<div class="copyright">
<p>© 2023 John Doe. 保留所有权利。</p>
</div>
</div>
</footer>
</body>
</html>