-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
174 lines (169 loc) · 4.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>张鑫 | Danny Zhang</title>
</head>
<body>
<style>
body {
font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
font-size: calc(10px + 0.33vw);
-webkit-font-smoothing: antialiased;
padding: 5vh 10vw;
color: #121314;
}
body,
html {
position: relative;
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
overflow-y: hidden;
background-image: linear-gradient(
141deg,
#9fb8ad 0%,
#1fc8db 51%,
#2cb5e8 75%
);
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
}
#Danny-Resume {
width: 66vw;
margin: 10vw auto 0;
text-align: end;
}
p,
li {
font-size: 1em;
line-height: 1.8;
list-style: none;
}
a {
text-decoration: none;
white-space: nowrap;
position: relative;
color:slateblue;
}
a:hover {
opacity: 0.6;
}
@media screen and (max-width: 768px) {
#Danny-Resume {
margin: 160px auto 0;
}
.justify {
text-align: justify
}
}
</style>
<div id="Danny-Resume">
<h1>张鑫 | Danny Zhang</h1>
<h2>期望岗位</h2>
<p>前端Lead</p>
<h2>个人优势</h2>
<p class="justify"><strong>9年</strong>以上项目开发经验,其中<strong>7年以上大型系统架构设计经验,5年以上研发团队管理经验,2年以上产研团队管理经验,且有电脑/手机/平板全响应式架构经验以及 Web /小程序/App 跨端架构经验。</strong>对 <strong>Javascript、Vue/React 源码、Nuxt(Vue SSR)、NodeJs、Webpack 打包策略等均有深入研究。</strong></p>
<h2>开源项目和作品</h2>
<ul>
<li>
<a
href="https://github.com/HappyColour/nuxt3-template"
rel="noopener noreferrer"
target="_blank"
>Nuxt3最佳实践模板</a
>
</li>
<li>
<a
href="https://github.com/HappyColour/airtable-to-json"
rel="noopener noreferrer"
target="_blank"
>Airtable转JSON脚本</a
>
</li>
<li>
<a
href="https://github.com/HappyColour/i18n-file-to-json"
rel="noopener noreferrer"
target="_blank"
>文件类型转化工具</a
>
</li>
<li>
<a
href="https://github.com/HappyColour/filter-invalid-images"
rel="noopener noreferrer"
target="_blank"
>图片过滤器</a
>
</li>
</ul>
<h2>Contact</h2>
<p>
<a
href="mailto:happyelement.danny@gmail.com"
rel="noopener noreferrer"
target="_blank"
>Email To Me</a
>
</p>
<p>
<a
href="https://github.com/HappyColour"
rel="noopener noreferrer"
target="_blank"
>Github Address</a
>
</p>
</div>
</body>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.js"></script>
<script>
let getRandomColorX = function () {
return (
"#" +
(function (color) {
return (color += "0123456789abcdef"[
Math.floor(Math.random() * 16)
]) && color.length == 6
? color
: arguments.callee(color);
})("")
);
};
let getRandomColorY = function () {
return (
"#" +
(function (color) {
return (color += "0123456789abcdef"[
Math.floor(Math.random() * 16)
]) && color.length == 6
? color
: arguments.callee(color);
})("")
);
};
$("body").on("click", function () {
$(this).css({
background:
"-webkit-gradient(linear, left top, left bottom, from(" +
getRandomColorX() +
"), to(" +
getRandomColorY() +
"))",
});
});
</script>
</html>