-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
347 lines (341 loc) · 13.6 KB
/
index.html
File metadata and controls
347 lines (341 loc) · 13.6 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
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Blaise Chen | 個人簡介</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"/>
<style>
body {
font-family: 'Noto Sans TC', sans-serif;
color: #333;
background: linear-gradient(120deg, #f8fffd 0%, #c1dbf7 100%);
margin: 0; padding: 0;
}
a { color: inherit; text-decoration: none; }
.site-header {
position: fixed; width: 100%; top: 0; left: 0;
background: rgba(255,255,255,0.85);
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
z-index: 100;
backdrop-filter: blur(8px);
}
.nav-container {
max-width: 1000px; margin: 0 auto;
display: flex; align-items: center; justify-content: space-between;
padding: 0 1.5rem; height: 64px;
}
.site-title {
font-size: 1.5rem; font-weight: 700; color: #2363aa;
letter-spacing: 1px; transition: color .25s;
}
.site-title:hover { color: #e55c19; }
.nav-links {
display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
font-weight: 500; font-size: 1.1rem;
padding: 4px 8px; border-radius: 5px;
transition: background .25s, color .25s;
}
.nav-links li a:hover { background: #e5f0ff; color: #e55c19; }
.nav-toggle, .nav-toggle-label { display: none; }
@media (max-width: 700px) {
.nav-links {
flex-direction: column; background: #fff;
position: absolute; top: 64px; left: 0; right: 0; width: 100vw;
max-height: 0; overflow: hidden;
box-shadow: 0 4px 24px rgba(0,0,0,0.09);
gap: 1.2rem; align-items: center;
transition: max-height .3s, opacity .2s;
opacity: 0; pointer-events: none; z-index: 999;
}
.nav-toggle:checked ~ .nav-links {
max-height: 330px; opacity: 1; pointer-events: auto;
}
.nav-toggle-label {
display: flex; flex-direction: column; cursor: pointer;
width: 36px; height: 36px; justify-content: center; align-items: center;
margin-left: auto; z-index: 1001;
}
.nav-toggle-label span {
display: block; height: 4px; width: 26px; background: #2363aa;
margin: 4px 0; border-radius: 2px; transition: .3s;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
opacity: 0;
}
.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}
}
.hero-section {
min-height: 90vh; display: flex; flex-direction: column;
justify-content: center; align-items: center;
padding-top: 100px; text-align: center;
}
.avatar {
width: 120px; height: 120px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 6px 32px rgba(50,70,150,0.12);
margin-bottom: 1.5rem;
animation: float 3.6s ease-in-out infinite;
border: none;
background: #f5f5f5;
}
.avatar:hover { box-shadow: 0 8px 48px #ff8c0022; }
@keyframes float {
0% { transform: translateY(0);}
50% { transform: translateY(-14px);}
100% { transform: translateY(0);}
}
.hero-title {
font-size: 2.4rem; font-weight: 700; color: #2363aa;
margin-bottom: 0.5rem; letter-spacing: 1.5px;
animation: fadein 1.1s cubic-bezier(.6,2,.5,1);
}
.hero-slogan {
font-size: 1.18rem; color: #444; margin-bottom: 1.2rem;
animation: fadein 1.8s .25s backwards;
}
@keyframes fadein {
0% { opacity: 0; transform: translateY(30px);}
100% { opacity: 1; transform: none;}
}
/* 社群快捷欄 */
.social-icons {
display: flex; gap: 1.3rem; justify-content: center; margin-bottom: 2.6rem;
flex-wrap: wrap;
}
.social-icons a {
font-size: 1.4rem; color: #2363aa; transition: color .2s, transform .22s;
background: #fff;
padding: 7px 11px; border-radius: 8px;
box-shadow: 0 2px 8px rgba(36,88,255,0.07);
display: inline-block;
}
.social-icons a:hover {
color: #fff; background: #e55c19;
transform: translateY(-4px) scale(1.15) rotate(-4deg);
}
.social-icons .main-link {
font-weight: 700; background: linear-gradient(90deg,#2363aa 50%,#e55c19 100%);
color: #fff !important;
}
.social-icons .main-link:hover {
background: #2363aa;
color: #fff;
box-shadow: 0 0 8px #e55c19;
}
/* ===== 區塊 ===== */
section { max-width: 900px; margin: 0 auto 64px auto; padding: 0 1.2rem; }
.block-title {
font-size: 1.4rem; color: #235; font-weight: 700;
margin-bottom: 1rem; border-left: 4px solid #2363aa; padding-left: 0.6rem;
letter-spacing: 2px; animation: fadein 1.5s .4s backwards;
}
.about-content {
display: flex; flex-wrap: wrap; gap: 2.2rem;
align-items: flex-start; justify-content: center;
}
.about-info, .skills-block {
background: #fff; border-radius: 16px;
box-shadow: 0 2px 18px rgba(0,0,0,0.08);
padding: 2.3rem 2rem 2rem 2rem;
min-width: 260px; max-width: 420px; margin-bottom: 0.6rem;
animation: fadein 1.1s .2s backwards;
}
.about-info h2 { font-size: 1.15rem; color: #2363aa; margin-bottom: 1rem; }
.about-info p { color: #555; font-size: 1.06rem; margin-bottom: 0.7rem; }
.skills-block h2 { font-size: 1.15rem; color: #2363aa; margin-bottom: 1.2rem;}
.skill-label { font-size: 1rem; color: #444; margin-bottom: 4px; display: flex; justify-content: space-between; }
.skill-bar-bg { background: #eee; border-radius: 5px; height: 13px; width: 100%; overflow: hidden; margin-bottom: 13px; }
.skill-bar-fill { background: linear-gradient(90deg,#2363aa 40%,#e55c19 100%); height: 100%; border-radius: 5px; }
.skill-bar-fill.html { width: 90%; }
.skill-bar-fill.js { width: 78%; }
.skill-bar-fill.python { width: 73%; }
.skill-bar-fill.linux { width: 77%; }
.skill-bar-fill.vm { width: 70%; }
.contact-block {
background: #fff; border-radius: 14px; box-shadow: 0 2px 14px rgba(0,0,0,0.07);
padding: 2rem 1.5rem; text-align: center;
}
.contact-block label {
font-size: 1rem; color: #2363aa;
display: block; margin-top: 1rem; margin-bottom: 4px; text-align:left;
}
.contact-block input, .contact-block textarea {
width: 100%; font-size: 1rem; border-radius: 6px;
border: 1px solid #c8d8f7; padding: 10px 12px; margin-bottom: 1rem;
transition: border-color .23s;
}
.contact-block input:focus, .contact-block textarea:focus {
border-color: #2363aa; outline: none;
}
.contact-block button {
background: linear-gradient(90deg,#2363aa 60%,#e55c19 100%);
color: #fff; border: none; border-radius: 23px; padding: 10px 40px;
font-size: 1.11rem; font-weight: 700; cursor: pointer; margin-top: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.09); transition: background .18s, transform .17s;
}
.contact-block button:hover { background: #e55c19; color:#fff; transform: translateY(-3px) scale(1.04);}
.site-footer {
background: #f6fbff; text-align: center; padding: 1.6rem 0 1.2rem 0;
font-size: 1rem; color: #2363aa; letter-spacing: 1px;
}
.footer-icons { margin-top: 0.6rem;}
.footer-icons a {margin: 0 10px; color: #2363aa; font-size: 1.1rem;}
.footer-icons a:hover { color: #e55c19; }
@media (max-width: 900px) {
.about-content { flex-direction: column; align-items: center;}
.about-info, .skills-block { max-width: 98vw; }
}
@media (max-width: 700px) {
.nav-container {padding: 0 0.7rem;}
.hero-title { font-size: 1.5rem;}
.hero-section {padding-top: 80px;}
}
@media (max-width: 480px) {
.about-info, .skills-block, .contact-block {padding: 1.1rem 0.5rem;}
.block-title {font-size:1.05rem;}
}
.contact-mail {
display: inline-block;
font-size: 1.13rem;
color: #2363aa;
background: #eaf2fb;
border-radius: 8px;
padding: 10px 18px;
margin-bottom: 14px;
font-weight: bold;
transition: background 0.19s, color 0.19s;
}
.contact-mail:hover {
background: #2363aa;
color: #fff;
}
.contact-social {
margin-top: 12px;
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.contact-social a {
color: #2363aa;
font-size: 1.22rem;
padding: 7px 12px;
border-radius: 8px;
background: #f6fbff;
transition: background 0.19s, color 0.18s;
margin: 0 2px;
}
.contact-social a:hover {
background: #e55c19;
color: #fff;
}
</style>
</head>
<body>
<!-- Header/Navbar -->
<header class="site-header">
<div class="nav-container">
<a class="site-title" href="#hero">Blaise Chen</a>
<input type="checkbox" id="nav-toggle" class="nav-toggle"/>
<label for="nav-toggle" class="nav-toggle-label">
<span></span><span></span><span></span>
</label>
<ul class="nav-links">
<li><a href="#hero">首頁</a></li>
<li><a href="#about">關於</a></li>
<li><a href="#skills">技能</a></li>
<li><a href="#contact">聯絡</a></li>
</ul>
</div>
</header>
<!-- Hero Section -->
<section class="hero-section" id="hero">
<img class="avatar" src="assets/img/avatar.png" alt="Blaise">
<h1 class="hero-title">布萊茲(Blaise Chen)</h1>
<div class="hero-slogan">資訊工程師 × 數位行銷 × 創意生活</div>
<!-- 社群工具列 Start -->
<div class="social-icons">
<a href="https://linktr.ee/zeroboss2006" target="_blank" class="main-link" title="全部社群"><i class="fas fa-link"></i> Linktree</a>
<a href="https://github.com/zeroboss2006" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
<a href="https://www.facebook.com/zeroboss2006" target="_blank" title="Facebook"><i class="fab fa-facebook"></i></a>
<a href="https://www.youtube.com/@zeroboss2006" target="_blank" title="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://www.linkedin.com/in/zeroboss2006" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://www.threads.net/@zeroboss2006" target="_blank" title="Threads"><i class="fab fa-threads"></i></a>
<a href="https://mirror.xyz/zeroboss2006.eth" target="_blank" title="Mirror 投資專欄"><i class="fas fa-newspaper"></i></a>
<a href="https://vocus.cc/user/zeroboss2006" target="_blank" title="Vocus 專欄"><i class="fas fa-book"></i></a>
<a href="https://line.me/ti/g2/hxxp_你的群組ID" target="_blank" title="LINE 社群"><i class="fab fa-line"></i></a>
<a href="mailto:zeroboss2005@gmail.com" title="Email"><i class="fas fa-envelope"></i></a>
</div>
<!-- 社群工具列 End -->
</section>
<!-- About Section -->
<section id="about">
<div class="block-title">關於我</div>
<div class="about-content">
<div class="about-info">
<h2>簡介</h2>
<p>嗨,我是布萊茲!<br>
專業於資訊工程、系統整合、數位行銷與內容創作。熱愛學習與分享,目標推動更聰明的數位生活。</p>
<p>技能領域涵蓋:網站建構、Linux運維、雲端虛擬化、資料分析、影像設計、影片剪輯。</p>
</div>
<div class="skills-block" id="skills">
<h2>技能</h2>
<div class="skill-label">HTML / CSS <span>90%</span></div>
<div class="skill-bar-bg"><div class="skill-bar-fill html"></div></div>
<div class="skill-label">JavaScript <span>78%</span></div>
<div class="skill-bar-bg"><div class="skill-bar-fill js"></div></div>
<div class="skill-label">Python <span>73%</span></div>
<div class="skill-bar-bg"><div class="skill-bar-fill python"></div></div>
<div class="skill-label">Linux / Shell <span>77%</span></div>
<div class="skill-bar-bg"><div class="skill-bar-fill linux"></div></div>
<div class="skill-label">VMware / 雲端虛擬化 <span>70%</span></div>
<div class="skill-bar-bg"><div class="skill-bar-fill vm"></div></div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact">
<div class="block-title">聯絡我</div>
<div class="contact-block">
<div style="margin-bottom:1.2rem;">
歡迎用以下方式聯絡我,或點擊社群連結:
</div>
<a href="mailto:zeroboss2005@gmail.com" class="contact-mail">
<i class="fas fa-envelope"></i> zeroboss2005@gmail.com
</a>
<div class="contact-social">
<a href="https://linktr.ee/zeroboss2006" target="_blank" title="更多社群">
<i class="fas fa-link"></i> Linktree
</a>
<a href="https://github.com/zeroboss2006" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://www.facebook.com/zeroboss2006" target="_blank" title="Facebook">
<i class="fab fa-facebook"></i>
</a>
<a href="https://www.linkedin.com/in/zeroboss2006" target="_blank" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</section>
<footer class="site-footer">
© 2024 Blaise Chen. All Rights Reserved.
<div class="footer-icons">
<a href="https://github.com/zeroboss2006" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.facebook.com/zeroboss2006" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="mailto:zeroboss2005@gmail.com"><i class="fas fa-envelope"></i></a>
<a href="https://linktr.ee/zeroboss2006" target="_blank"><i class="fas fa-link"></i></a>
</div>
</footer>
</body>
</html>