-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
636 lines (624 loc) · 23.2 KB
/
movie.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
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Amapia.com - Personal Information Website</title>
<link href="animate.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="wow.js"></script>
<script type="text/javascript">
new WOW().init();
wow = new WOW(
{
boxClass: 'wow', //WOW.js animation element class
animateClass: 'animated', //animation.css animation class
offset: 0, //animation starts at how many distance from the visible area
mobile: true,
live: true
})
wow.init();
</script>
<style type="text/css">
body
{
background-color: black;
}
/* 设置header的动画*/
@keyframes headerAnimation
{
from
{
height: 0px;
font-size: 0px;
color: transparent;
text-shadow: 0px 0px transparent;
}
to
{
height: 90px;
font-size: 45px;
color: mediumpurple;
text-shadow: 2px 1.5px plum;
}
}
@keyframes homeAnimation
{
from
{
color: transparent;
}
to
{
color: white;
}
}
/* 设置“回到顶部”按钮的样式*/
#backToTop
{
}
/*设置header的样式*/
#header
{
margin-top: -50px;
margin:0 auto;
width: 100%;
opacity: 0.8;
background-image: url(pictures/background_3.PNG);
background-size: 50%;
}
#title
{
padding-top: 20px;
margin-top: -50px;
}
/* 设置header里面title的文字样式*/
#title p
{
text-align: center;
color: mediumpurple;
font-size: 45px;
letter-spacing: 3px;
line-height: 90px;
text-shadow: 2px 1.5px plum;
animation-name: headerAnimation;
animation-duration: 2s;
}
/* 设置选择栏的样式*/
#content
{
margin: 0 auto;
width: 100%;
height: 70px;
text-align: center;
overflow: hidden;
}
#content div
{
width: 20%;
list-style: none;
float: left;
}
#content a
{
font-size: 120%;
line-height: 55px;
font-weight: bold;
color: white;
text-decoration: none;
padding: 20px 20px;
text-shadow: 1px 2px plum;
}
#content a:hover
{
background-color: #660099;
box-shadow: 1px 1px 1px plum;
}
/* 设置自我介绍页面*/
#home
{
margin-top: 50px;
height: auto;
overflow: hidden;
}
#homeImage
{
width: 50%;
float: left;
}
#homeText
{
/*
background-image: url(pictures/home_frame.jpg);
background-size: contain;
background-repeat: no-repeat;
*/
width: 40%;
height: inherit;
float: left;
border-style:inset;
border-width: 5px;
border-radius: 15px;
border-color: plum;
}
#home p
{
/* 后续学习JavaScript之后要把这段文字做成打印机效果*/
font-size: 17px;
padding-left: 5%;
padding-right: 13%;
color: white;
line-height: 40px;
animation-name: homeAnimation;
animation-duration: 5s;
}
/*
#professionalSkillsTransformation
{
width: 100%;
height: 270px;
background-image: url(pictures/transformation_professional%20skills.jpg);
background-size: 100%;
}
*/
#professionalSkills
{
width: 80%;
margin: 0 auto;
overflow: hidden;
}
#professionalSkillsContent
{
margin-top: 0;
padding: 70px;
border-left: 5px;
border-right: 5px;
border-color: #bf94e4;
border-style: solid;
opacity: 85%;
overflow: hidden;
}
#professionalSkillsContent p
{
width: 100%;
color: white;
font-size: 150%;
text-align: center;
}
.professionalSkillsTV
{
margin: 0 auto;
width: 100%;
height: 20%;
overflow: hidden;
}
.professionalSkillsTVItems
{
height: 90px;
width: 17%;
margin: 1%;
list-style: none;
float: left;
border-color: #bf94e4;
border-style: solid;
transition: 1s;
overflow: hidden;
word-wrap: break-word;
}
.professionalSkillsTVItems:hover
{
background-color: lightpink;
}
.professionalSkillsTVProjects
{
width: 17%;
margin: 2%;
list-style: none;
float: left;
transition: 1s;
}
.professionalSkillsTVProjects:hover
{
width: 20%;
}
#workExperienceTransformation
{
width: 100%;
}
#workExperiences
{
margin: 0 auto;
width: 80%;
}
#workExperienceContent
{
padding: 5%;
border-top: 0px;
border-bottom: 0px;
border-left: 2px;
border-right: 0.7px;
border-color: #ff9ac5;
border-style: solid;
opacity: 80%
}
#workExperienceContent p
{
width: 100%;
color: white;
font-size: 17px;
}
#certificatesTransformation
{
margin: 0 auto;
width: 70%;
}
#certificates
{
margin: 0 auto;
width: 90%;
}
#certificatesContent
{
margin: 0 auto;
width: 90%;
padding-left: 10%;
}
#certificatesContent p
{
padding-left: 3%;
padding-right: 10%;
font-size: 20px;
color: white;
}
#interestsTransformation
{
margin: 0 auto;
width: 70%;
}
#interests
{
width: 100%;
margin: 0 auto;
}
#interestsContent
{
margin: 0 auto;
width: 80%;
}
#interestsContent p
{
padding-left: 10%;
padding-right: 10%;
color: white;
}
.bold
{
font-size: 21px;
font-weight: bolder;
text-shadow: 1px 1px plum;
background-color: rebeccapurple;
}
</style>
</head>
<body>
<div id="header">
<div id="title">
<p>
Chen Jiang Personal Website
</p>
</div>
<div id="content">
<div>
<!--这行需要定位到这个page的某一个部分-->
<a href = "movie.html">Home Page</a>
</div>
<div>
<!--这行需要定位到这个page的某一个部分-->
<a href="#professionalSkillsTransformation">Professional Skills</a>
</div>
<div>
<!--这行需要定位到这个page的某一个部分-->
<a href="#workExperienceTransformation">Work Experiences</a>
</div>
<div>
<!--这行需要定位到这个page的某一个部分-->
<a href="#certificatesTransformation">Certificates</a>
</div>
<div>
<!--这行需要定位到这个page的某一个部分-->
<a href="#interestsTransformation">Interests</a>
</div>
</div>
</div>
<div id="home">
<div id="homeImage">
<img src="pictures/home_headshot.jpg" alt="home page background" width="100%">
</div>
<div id="homeText">
<p>
Hi! My name is Chen Jiang, you can also call me Nancy! I am from China, Qingdao. Currently I am studying in University of Toronto, specialist in Computer Science, mainly focus on Artificial Intelligence and Computer Vision and major in Statistics.
</p>
<p>
I would love to share my stories and experiences with you guys! Don't leave the page when you see me, there gonna be a lot of exiting information and stories about me if you would just spend a little bit more time viewing the page!
</p>
<p>
As you can see from the left, that is my picture lol~ I took this picture two years ago and now I haven't changed a little!
</p>
<p>
-Chen Jiang (Nancy)
</p>
</div>
</div>
<div class="wow fadeInDown" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1" id="professionalSkillsTransformation">
<img src="pictures/transformation_professional%20skills.jpg" alt="transformation picture to professional skills" width="100%">
</div>
<div class="wow slideInLeft" data-wow-duration="1s" data-wow-delay="0.5s" data-wow-offset="10" data-wow-iteration="1" id="professionalSkills">
<div>
<img src="pictures/professional_skills_tvtop.jpg" alt="" width="100%">
</div>
<div id="professionalSkillsContent">
<p class="bold">
Hard Skills(Technology Skills):
</p>
<div class="professionalSkillsTV">
<div class="professionalSkillsTVItems">
<p>Java</p>
</div>
<div class="professionalSkillsTVItems">
<p>Python</p>
</div>
<div class="professionalSkillsTVItems">
<p>C++/C</p>
</div>
<div class="professionalSkillsTVItems">
<p>Front-End</p>
</div>
<div class="professionalSkillsTVItems">
<p>Back-End</p>
</div>
<div class="professionalSkillsTVItems">
<p>Database</p>
</div>
<div class="professionalSkillsTVItems">
<p>HTML</p>
</div>
<div class="professionalSkillsTVItems">
<p>CSS</p>
</div>
<div class="professionalSkillsTVItems">
<p>JavaScript</p>
</div>
<div class="professionalSkillsTVItems">
<p>Ajax</p>
</div>
<div class="professionalSkillsTVItems">
<p>JQuery</p>
</div>
<div class="professionalSkillsTVItems">
<p>Axios</p>
</div>
<div class="professionalSkillsTVItems">
<p>Vue</p>
</div>
<div class="professionalSkillsTVItems">
<p>Element UI</p>
</div>
<div class="professionalSkillsTVItems">
<p>Spring</p>
</div>
<div class="professionalSkillsTVItems">
<p>SpringMVC</p>
</div>
<div class="professionalSkillsTVItems">
<p>SpringBoot</p>
</div>
<div class="professionalSkillsTVItems">
<p>MyBatis</p>
</div>
<div class="professionalSkillsTVItems">
<p>MyBatis-Plus</p>
</div>
<div class="professionalSkillsTVItems">
<p>MySQL</p>
</div>
<div class="professionalSkillsTVItems">
<p>Oracle</p>
</div>
<div class="professionalSkillsTVItems">
<p>Git</p>
</div>
<div class="professionalSkillsTVItems">
<p>GitHub</p>
</div>
<div class="professionalSkillsTVItems">
<p>JUnit</p>
</div>
<div class="professionalSkillsTVItems">
<p>Maven</p>
</div>
<div class="professionalSkillsTVItems">
<p>SOLID Principle</p>
</div>
<div class="professionalSkillsTVItems">
<p>software design pattern</p>
</div>
<div class="professionalSkillsTVItems">
<p>clean architecture</p>
</div>
<div class="professionalSkillsTVItems">
<p>Unix</p>
</div>
<div class="professionalSkillsTVItems">
<p>R</p>
</div>
<div class="professionalSkillsTVItems">
<p>SpringCloud</p>
</div>
<div class="professionalSkillsTVItems">
<p>EhCache</p>
</div>
<div class="professionalSkillsTVItems">
<p>Redis</p>
</div>
<div class="professionalSkillsTVItems">
<p>Elasticsearch</p>
</div>
<div class="professionalSkillsTVItems">
<p>RabbitMQ</p>
</div>
</div>
<p class="bold">Past Projects Experiences:</p>
<div class="professionalSkillsTV">
<div class="professionalSkillsTVProjects">
<a href="https://chenjiang03.github.io/movie#header">
<img src="pictures/professional_skills/Amapia.jpg" alt="" width="100%">
</a>
</div>
<div class="professionalSkillsTVProjects">
<a href="https://github.com/Anesthez/CSC-207-Group-Project-Group86">
<img src="pictures/professional_skills/UTMet.jpg" alt="" width="100%">
</a>
</div>
<div class="professionalSkillsTVProjects">
<img src="pictures/professional_skills/Integration.jpg" alt="" width="100%">
</div>
<div class="professionalSkillsTVProjects">
<a href="https://github.com/ChenJiang03/Criminal-Rate-Statistical-Modelling">
<img src="pictures/professional_skills/Modeling.jpg" alt="" width="100%">
</a>
</div>
</div>
<p class="bold">
Soft Skills(non-Technology Skills):
</p>
<div class="professionalSkillsTV">
<div class="professionalSkillsTVItems">
<p>Being Coachable</p>
</div>
<div class="professionalSkillsTVItems">
<p>Team Work</p>
</div>
<div class="professionalSkillsTVItems">
<p>Communication</p>
</div>
<div class="professionalSkillsTVItems">
<p>Critical Thinking</p>
</div>
<div class="professionalSkillsTVItems">
<p>Time Management</p>
</div>
<div class="professionalSkillsTVItems">
<p>Pressure Management</p>
</div>
<div class="professionalSkillsTVItems">
<p>Problem Solving</p>
</div>
<div class="professionalSkillsTVItems">
<p>Creativity</p>
</div>
<div class="professionalSkillsTVItems">
<p>Empathy</p>
</div>
<div class="professionalSkillsTVItems">
<p>Interpersonal</p>
</div>
</div>
</div>
<div>
<img src="pictures/professional_skills_tvbottom.jpg" alt="" width="100%">
</div>
</div>
<!-- work experiences transformation-->
<div class="wow bounceIn" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1" id ="workExperienceTransformation">
<img src="pictures/transformation_work_experiences.jpg" alt="" width="100%">
</div>
<div id="workExperiences" class="wow bounceIn" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1" id ="workExperienceTransformation">
<div><img src="pictures/work_experience_booktop.jpg" alt="" width="100%"></div>
<div id="workExperienceContent" >
<p class="bold">Big Bang - 2022.06-Current - Montreal, QC - IT Support Specialist:</p>
<p>Help to fix computer related problem, including software and hardware issues, setup laptops for new hires, check and update devices, help to test software, and work on internal projects.</p>
<p class="bold">UTADA - 2022.09-Current - Toronto, ON - President of Event Department of UTADA</p>
<p>The full name of UTADA is University of Toronto Application Development Association Innovation Fair. I organize and manage events held in the club, recruit new members and namage interviews of new joins, lead the members in the event department to organize and prepare events together.</p>
<p class="bold">ASIP - 2022.09-Current - Toronto, ON - Participant</p>
<p>ASIP is University of Toronto Art and Science Internship Program, and currently I am enrolled in it to find internships through out my University.</p>
<p class="bold">Qingdao Makesi Software Co.LTD - 2021.07-2021.08 - Qingdao, China -Software Testing Internship</p>
<p>Conducting spesific analysis and functional test for newly developed functional modules according to the requirements of the company. The job is mainly about black box testing, bug recording and error reporting.</p>
<p class="bold">Qingdao Wanma Education Technology CO. LTD - 2020.07-2020.08 - Qingdao, China - Course Consultant Assistant Internship</p>
<p>Make phone calls, course inquires, course introductions, training directions, develop training plans and objectives for those who are interested in software programing. Maintained excellent communication with students, parents, staff and school personnel. Oversaw delivery of engaging, interactive educational experiences and curriculum.</p>
</div>
<div><img src="pictures/work_experience_bookbottom.jpg" alt="" width="100%"></div>
</div>
<div id="certificatesTransformation" class="wow flipInY" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1">
<img src="pictures/certificate_transformation.jpg" alt="" width="100%">
</div>
<div id="certificates" class="wow fadeIn" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1">
<div><img src="pictures/certificate_startop.jpg" alt="" width="100%"></div>
<div id="certificatesContent">
<p>2021-2022 Co-curricular record: RSG Leader pf Recognized Study Groups: Faculty of Art and Science</p>
<img src="pictures/certificates/1.jpg" alt="" width="80%">
<p>2021-2022 Dean's List Scholar awarded by University of Toronto for my outstanding GPA in terms of my course work</p>
<img src="pictures/certificates/2.jpg" alt="" width="80%">
<p>2019 Verified certificate of achievement of MIT x 6.00.1 x : Introduction to Computer Science and Programming Using Python | EDX</p>
<img src="pictures/certificates/3.jpg" alt="" width="80%">
<p>2020 Verified certificate of achievement of MIT x 6.00.2 x : Introduction to Computational Thinking and Data Science | EDX</p>
<img src="pictures/certificates/1.jpg" alt="" width="80%">
<p>2020 Canadian Senior Mathematics Contest World Top 25%</p>
<img src="pictures/certificates/2.jpg" alt="" width="80%">
<p>2019 Youth Leadership 2019 Module G20 Beijing Summit Exceptional Delegation Certificate Awarded</p>
<img src="pictures/certificates/3.jpg" alt="" width="80%">
<p>2020 The Bronze Standard of The Duke of Edinburgh's International Award</p>
<img src="pictures/certificates/1.jpg" alt="" width="80%">
<p>2021 Top four debating teams in Harvard Global Debate Contest, and "The best debater" award</p>
<img src="pictures/certificates/2.jpg" alt="" width="80%">
<p>2019 Certificate of achievement of Thailand volunteering teaching project</p>
</div>
<div><img src="pictures/certificate_starbottom.jpg" alt="" width="100%"></div>
</div>
<div id="interestsTransformation" class="wow fadeInDown" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1">
<img src="pictures/interest_transformation.jpg" alt="" width="100%">
</div>
<div id="interests" class="wow fadeInDown" data-wow-duration="1s" data-wow-delay="0.1s" data-wow-offset="10" data-wow-iteration="1">
<div><img src="pictures/interest_musictop.jpg" alt="" width="100%"></div>
<div id="interestsContent">
<p>计划讲述一下我喜欢的电影,放一个视频链接在这个地方</p>
<p>计划讲述一下我喜欢的乐器,录个视频放视频链接</p>
<p>计划讲述一下我喜欢的编程,录个视频放视频链接</p>
</div>
<div><img src="pictures/interest_musicbottom.jpg" alt="" width="100%"></div>
</div>
<!--设置回到顶部的按钮!!!-->
<div id="button">
<a id="backToTop" href="#header">
<span>⬆️</span>
</a>
</div>
<!--
<script>
$(function()
{
for(var i=0; i<100; i++)
{
$("#button").append("<p>xxxxxxx<br></p>")
}
})
</script>
-->
<script>
$(function()
{
$(window).scroll(function(){
var scrollt = document.documentElement.scrollTop + document.body.scrollTop; //Get the height after scrolling
if(scrollt > 200) //判断滚动后高度超过200px就显示back to top
{
$("#button").fadeIn(400); //淡出
}
else
{
$("button").stop.fadeOut(400); //如果返回或者没有吵过,就淡出
}
})
$("button").click(function(){
$("html,body").animate({scrollTop:"0px"},200);
})
})
</script>
</body>
</html>