-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyResume.html
112 lines (106 loc) · 3.48 KB
/
myResume.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<title>我的简历</title>
<!-- 载入所有的组件资源 -->
<script type="text/javascript" src="js/lib/jquery.js"></script>
<script type="text/javascript" src="js/lib/jquery.fullPage.js"></script>
<link rel="stylesheet" type="text/css" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/H5.css">
<link rel="stylesheet" type="text/css" href="css/H5ComponentBase.css">
<link rel="stylesheet" type="text/css" href="css/informations.css">
<link rel="stylesheet" type="text/css" href="css/showCode.css">
<link rel="stylesheet" type="text/css" href="css/welcome.css">
<link rel="stylesheet" type="text/css" href="css/whyCoding.css">
<script type="text/javascript" src="js/H5.js"></script>
<script type="text/javascript" src="js/H5ComponentBase.js"></script>
<script type="text/javascript" src="js/informations.js"></script>
<script type="text/javascript" src="js/showCode.js"></script>
<script type="text/javascript" src="js/welcome.js"></script>
<script type="text/javascript" src="js/whyCoding.js"></script>
<body>
</body>
<script type="text/javascript">
$(function() {
var init = new H5();
init.addPage().addComponent('welcome', {
type: 'welcome',
}).addPage().addComponent('informations', {
type: 'informations',
animateIn: {
titleAnimateIn: {
top: 20,
opacity:1,
},
leftSideAnimateIn: {
left: 200,
},
rightSideAnimateIn: {
right: 50,
}
},
animateOut: {
titleAnimateOut: {
top: -150,
opacity:0,
},
leftSideAnimateOut: {
left: -350,
},
rightSideAnimateOut: {
right: -750,
}
},
animateTime: 400,
}).addPage().addComponent('showCode', {
type: 'showCode',
animateIn: {
titleAnimateIn: {
top: 20,
opacity:1,
},
leftSideAnimateIn: {
left: 50,
},
rightSideAnimateIn: {
right: 50,
}
},
animateOut: {
titleAnimateOut: {
top: -150,
opacity:0,
},
leftSideAnimateOut: {
left: -750,
},
rightSideAnimateOut: {
right: -750,
}
},
animateTime: 400,
}).addPage().addComponent('whyCoding', {
type: 'whyCoding',
animateIn: {
titleAnimateIn: {
left: 20,
},
contentAnimateIn: {
top: 150,
},
},
animateOut: {
titleAnimateOut: {
left: -550,
},
contentAnimateOut: {
top: 750,
},
},
animateTime: 400,
}).loader();;
});
</script>
</html>