-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
506 lines (499 loc) · 18.7 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-hant">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stanley's Portfolio</title>
<link href="img/S-logo.ico" rel="shortcut icon" />
<link rel="stylesheet" href="./style/all.css" />
<link rel="stylesheet" href="./style/navbar.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap-v4-grid-only@1.0.0/dist/bootstrap-grid.min.css"
rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/548e1038d8.js"
crossorigin="anonymous"
></script>
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
</head>
<body>
<header>
<div class="background-home" id="home">
<div class="home-logo"></div>
<div class="home-hello">
<h3>您好!</h3>
<h1>我是 幸徽</h1>
</div>
<div class="avatar-wrapper">
<img
class="home-center-avatar shape-3"
src="./img/home_shape-3.png"
/>
<img
class="home-center-avatar shape-2"
src="./img/home_shape-2.png"
/>
<img
class="home-center-avatar shape-1"
src="./img/home_shape-1.png"
/>
<img
class="home-center-avatar avatar-1"
src="./img/home_avatar-1.png"
/>
</div>
<div class="home-my-job">
<h3>我是一名</h3>
<h1 class="typing-effect" id="typing">平面設計師</h1>
</div>
</div>
<div class="bnt-cont">
<a href="./index.html#about-me" class="btn-menu">
<span class="circle">
<span class="icon arrow"></span>
</span>
<span class="btn-text"
><i class="fa-solid fa-user" color="#a98109"></i>關於我</span
>
</a>
<a href="./index.html#works" class="btn-menu">
<span class="circle">
<span class="icon arrow"></span>
</span>
<span class="btn-text"
><i class="fa-solid fa-image" color="#a98109"></i>作品集</span
>
</a>
<a href="./index.html#contact-me" class="btn-menu">
<span class="circle">
<span class="icon arrow"></span>
</span>
<span class="btn-text"
><i class="fa-solid fa-comments" color="#a98109"></i>聯絡我</span
>
</a>
</div>
</header>
<main>
<section class="about-me" id="about-me">
<div class="about-me-1">
<div class="d-flex align-items-center justify-content-space-between">
<div class="avatar-2 reveal"></div>
<div class="about-me-1-text reveal">
<p>
我是一位有著五年平面設計經驗的視覺設計師,熱愛創造視覺美學,曾自學figma、HTML和CSS等網頁設計技術,並正致力於學習JavaScript。
</p>
<br />
<p>
我所擁有的專業職能包括使用Adobe
Illustrator、Photoshop等設計軟體,獨立完成各式專案的經驗,內容包含品牌形象、宣傳海報、Facebook圖像廣告、名片設計等,也有自己的UIUX專案設計作品。我注重與客戶和團隊之間的溝通,並能在緊湊的時間表下交付高品質的成果。
</p>
</div>
</div>
</div>
<div class="about-me-2">
<div class="about-me-2-cont">
<div class="introdution about-me-wrapper reveal">
<h3 class="">基本資料</h3>
<h5>INTRODUTION</h5>
<hr align="left" />
<div class="d-flex align-items-center">
<i class="fa-solid fa-user" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">姓名 Name</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>何幸徽</li>
</ul>
<div class="d-flex align-items-center">
<i class="fa-solid fa-face-smile" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">暱稱 Nickname</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>Stanley</li>
</ul>
<div class="d-flex align-items-center">
<i class="fa-solid fa-mars" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">性別 Gender</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>男性</li>
</ul>
<div class="d-flex align-items-center">
<i
class="fa-regular fa-calendar-days"
style="color: #ffc10e"
></i>
<p class="pdl-8 font-weight-500">生日 Date of Birth</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>1994 / 12 / 14</li>
</ul>
<div class="d-flex align-items-center">
<i class="fa-solid fa-phone" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">聯絡電話 Contact Number</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>0970 739 327</li>
</ul>
<div class="d-flex align-items-center">
<i class="fa-solid fa-envelope" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">電子信箱 E-mail</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>stanleyhaw94@gmail.com</li>
</ul>
<div class="d-flex align-items-center">
<i class="fa-solid fa-location-dot" style="color: #ffc10e"></i>
<p class="pdl-8 font-weight-500">通訊地址 Current Address</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>新北市三重區仁愛街125巷81號6樓</li>
</ul>
</div>
<div class="education about-me-wrapper reveal">
<h3 class="font-weight-500">教育程度</h3>
<h5>EDUCATION</h5>
<hr align="left" />
<div class="d-flex align-items-center">
<img
src="./img/tatung_U_logo.png"
style="width: 24px; height: auto"
/>
<p class="pdl-8 font-weight-500">大同大學</p>
</div>
<ul class="font-weight-300 pdl-64">
<li>工業設計學系</li>
<li>2013/9 - 2017/6 畢業</li>
</ul>
</div>
<div class="experience about-me-wrapper reveal">
<h3 class="font-weight-500">工作經歷</h3>
<h5>EXPERIRENCE</h5>
<hr align="left" />
<div class="d-flex align-items-center">
<img
src="./img/Watermelon_logo.png"
style="width: 24px; height: auto"
/>
<p class="pdl-8 font-weight-500">西瓜籽辦公用品有限公司</p>
</div>
<ul class="font-weight-300 pdl-64 pdb-16">
<li>
平面設計師<br />
行銷企劃<br />
電商平台管理與維護<br />
</li>
<li>2017/9 - 2020/9</li>
</ul>
<div class="d-flex align-items-center">
<img
src="./img/gemini_sport_logo.png"
style="width: 24px; height: auto"
/>
<p class="pdl-8 font-weight-500">愛品牌國際有限公司</p>
</div>
<ul class="font-weight-300 pdl-64">
<li>
平面設計師<br />
活動攝影<br />
講習活動工作人員
</li>
<li>2021/10 - 2022/9</li>
</ul>
</div>
</div>
</div>
<div class="abilities">
<div class="toolsAndSkills reveal">
<h3 class="font-weight-500">專業技能</h3>
<h5>MY SKILLS</h5>
<hr align="left" />
<div class="skill-cont">
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_ai_icon.png"
alt="AI"
class="skill-img"
/><span class="skill-text-wrapper"
>精通版型套版、視覺設計、ICON圖標等製作,也能利用套用商業素材以快速完成降低時間成本。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-ai"></span
></span>
</li>
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_ps_icon.png"
alt="PS"
class="skill-img"
/><span class="skill-text-wrapper"
>主要修圖、去背、製作GIF動態圖,協助圖像快速達到預期效果。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-ps"></span
></span>
</li>
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_html5_icon.png"
alt="HTML5"
class="skill-img"
/><span class="skill-text-wrapper"
>自學,熟悉html
5架構,能撰寫、看懂標籤語意並進行編輯。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-html5"></span
></span>
</li>
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_css3_icon.png"
alt="CSS5"
class="skill-img"
/><span class="skill-text-wrapper"
>自學,熟悉Sass框架,能撰寫部分特效與響應式頁面設計RWD。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-css3"></span
></span>
</li>
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_figma_icon.png"
alt="FIGMA"
class="skill-img"
/><span class="skill-text-wrapper"
>自學,理解元件組合與插件運用,能製作出Wireframe、mockup、prototype。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-figma"></span
></span>
</li>
<li>
<div class="d-flex align-items-center">
<img
src="./img/PORTFOLIO_ppt_icon.png"
alt="PPT"
class="skill-img"
/><span class="skill-text-wrapper"
>能製作動態簡報,並轉成影片或是其他商業用途之檔案。</span
>
</div>
<span class="skill-bar"
><span class="skill-value skill-ppt"></span
></span>
</li>
</div>
</div>
</div>
</section>
<section class="works" id="works">
<div class="works-1">
<div
class="container position-relative d-flex justify-content-space-around"
>
<a href="./uiux.html" class="uiux-D works-btn reveal">
<span class="works-words" align="center">
<h3>UI設計作品(公共運輸軟體)</h3>
<p>UI DESIGN</p></span
></a
>
<a href="./graphic-design.html" class="graphic-D works-btn reveal">
<span class="works-words" align="center">
<h3>商業平面設計</h3>
<p>GRAPHIC DESIGN</p></span
>
</a>
<a href="./poster-design.html" class="poster-D works-btn reveal">
<span class="works-words" align="center">
<h3>海報設計</h3>
<p>POSTER DESIGN</p></span
>
</a>
<a href="./logo-design.html" class="logo-D works-btn reveal">
<span class="works-words" align="center">
<h3>識別設計</h3>
<p>LOGO DESIGN</p></span
>
</a>
<a href="./project.html" class="project-D works-btn reveal">
<span class="works-words" align="center">
<h3>其他在職作品</h3>
<p>DESIGN WORKS</p></span
>
</a>
</div>
</div>
</section>
<section class="contact-me" id="contact-me">
<div class="contact-me-1">
<div class="container">
<div class="contact-form reveal">
<form method="post" onkeydown="return event.key != 'Enter';">
<div class="input-box input-name-wrapper">
<div class="name-text">
<input
class="input-text"
type="text"
id="name"
name="name"
required
/>
<span>
<i
class="fa-solid fa-user"
style="color: #ffc10e; width: 20px; height: 12px"
>
</i>
姓名</span
>
</div>
<div>
<input type="radio" id="mr" name="gender" required />
<label for="mr">先生</label>
<input type="radio" id="ms" name="gender" required />
<label for="ms">小姐</label>
</div>
</div>
<div class="input-box">
<input
class="input-text"
type="name"
id="company"
name="company"
required
/>
<span>
<i
class="fa-solid fa-house"
style="color: #ffc10e; width: 20px; height: 12px"
>
</i>
公司名稱</span
>
</div>
<div class="input-box">
<input
class="input-text"
type="text"
id="email"
name="email"
required
/>
<span>
<i
class="fa-solid fa-envelope"
style="color: #ffc10e; width: 20px; height: 12px"
>
</i>
電子郵件</span
>
</div>
<div class="input-box">
<textarea
class="input-text"
id="message"
name="message"
required
></textarea>
<span>
<i
class="fa-solid fa-comments"
style="color: #ffc10e; width: 20px; height: 12px"
>
</i>
留言</span
>
</div>
<div>
<div class="submit-btn" onclick="sendMail()">
<p>送出</p>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer">
<p>©2023 Designed By Stanley Haw</p>
</div>
</footer>
<nav class="navbar-wrapper navbar-rwd-web z-index-99">
<div class="navbar">
<div class="d-flex justify-content-space-between align-items-center">
<a href="#home"><div class="logo"></div></a>
<ul class="navbar-list font-weight-400">
<li>
<a href="#about-me" class="list-items about-me">關於我</a>
</li>
<li><a href="#works" class="list-items works">作品集</a></li>
<li>
<a href="#contact-me" class="list-items contact-me">聯絡我</a>
</li>
</ul>
</div>
</div>
</nav>
<nav class="navbar-wrapper navbar-rwd-phone z-index-99">
<div class="navbar">
<div class="container">
<div class="d-flex justify-content-space-between align-items-center">
<a href="#home"><div class="logo"></div></a>
<ul class="navbar-list font-weight-400">
<li>
<a href="#about-me" class="list-items works"
><i class="fa-solid fa-user" color="#a98109"></i
></a>
</li>
<li>
<a href="#works" class="list-items about-me"
><i class="fa-solid fa-image" color="#a98109"></i
></a>
</li>
<li>
<a href="#contact-me" class="list-items contact-me"
><i class="fa-solid fa-comments" color="#a98109"></i
></a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</body>
<script src="./script.js"></script>
<script src="./email.js"></script>
<script src="./homeText.js"></script>
<script type="text/javascript">
(function () {
emailjs.init('teZOQBC4JjIANFoUp');
})();
</script>
</html>