-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
142 lines (117 loc) · 4.21 KB
/
Copy pathabout.html
File metadata and controls
142 lines (117 loc) · 4.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kit Website - About Me</title>
<script src="https://use.fontawesome.com/103b81eef9.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/about.css">
<script src="js.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html"> <img src="./image/logo.png"></a>
<nav>
<ul>
<li><a href="./about.html">about</a></li>
<li><a href="./work.html">work</a></li>
<li><a href="./gallery.html">gallery</a></li>
<li><a href="./contact.html">contact</a></li>
</ul>
</nav>
</header>
<div class="about_container">
<div class="title">About Me</div>
<svg>
<line x1="0" y1="0" x2="0" y2="1250" id="line">
</svg>
<div class="timeline">
<div class="a1">
<div class="content">
<h3>1990</h3>
<p> Born in Hong Kong
</p>
</div>
</div>
<div class="a2">
<img src="./image/about_timeline_a.jpg">
</div>
<div class="b1">
<img src="./image/about_timeline_b.jpg">
</div>
<div class="b2">
<div class="content">
<h3>2011</h3>
<p> My first sketching</p>
</div>
</div>
<div class="c1">
<div class="content">
<h3>2011-2014</h3>
<p>HKDI</p>
</div>
</div>
<div class="c2">
<img src="./image/hkdi.jpg">
</div>
<div class="d1">
<img src="./image/gw.jpg">
</div>
<div class="d2">
<div class="content">
<h3>2014-2017</h3>
<p> Graphic Designer in Global Wise International Limited</p>
</div>
</div>
<div class="e1">
<div class="content">
<h3>2017-2020</h3>
<p> Graphic Designer in Jupiter Prestige Group - Asia</p>
</div>
</div>
<div class="e2">
<img src="./image/jpg.jpg">
</div>
<div class="f1">
<img src="./image/ciccc.jpg">
</div>
<div class="f2">
<div class="content">
<h3>2020</h3>
<p>Study in Cornerstone International Coummunity College</p>
</div>
</div>
</div>
</div>
<footer>
<a href="#top">
<div class="backtop">Back to top</div>
</a>
<div class="footer_container">
<a href="https://www.instagram.com/kitkitkis/" target="_blank"><i class="fa fa-instagram fa-4x"
aria-hidden="true"></i></a>
<a href="http://www.facebook.com" target="_blank"><i class="fa fa-facebook-official fa-4x"
aria-hidden="true"></i></a>
<a href="mailto:kit486759@gmail.com" target="_blank"><i class="fa fa-envelope-o fa-4x"
aria-hidden="true"></i></a>
<br>
Copyright © 2021 KitSo All Rights Reserved.
</div>
</footer>
<script>
var line = document.getElementById("line");
var length = line.getTotalLength();
line.style.strokeDasharray = length;
line.style.strokeDashoffset = length;
window.addEventListener("scroll", myFunction);
function myFunction() {
var scrollpercent =
(document.body.scrollTop + document.documentElement.scrollTop) /
(document.documentElement.scrollHeight - document.documentElement.clientHeight);
var draw = length * scrollpercent;
line.style.strokeDashoffset = length - draw;
}
</script>
</body>
</html>