forked from challions/challions.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (106 loc) · 3 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>挑战雄狮</title>
<meta name="author" content="千橙" />
<meta name="description" content="挑战雄狮,唤醒你内心的睡狮" />
<meta name="keywords" content="挑战雄狮,挑战狮子,挑战群狮,战胜自己,challions,Challange Lions" />
<meta name="Resource-type" content="html" />
<link rel="stylesheet" type="text/css" href="./css/jquery.fullPage.css" />
<link rel="stylesheet" type="text/css" href="./css/examples.css" />
<style>
/* Style for our header texts
* --------------------------------------- */
h1{
font-size: 5em;
font-family: arial,helvetica;
color: #fff;
margin:0;
}
.intro p{
color: #fff;
}
/* Centered texts in each section
* --------------------------------------- */
.section{
text-align:center;
}
/* Overwriting styles for control arrows for slides
* --------------------------------------- */
.controlArrow.prev {
left: 50px;
}
.controlArrow.next{
right: 50px;
}
/* Bottom menu
* --------------------------------------- */
#infoMenu li a {
color: #fff;
}
</style>
<!--[if IE]>
<script type="text/javascript">
var console = { log: function() {} };
</script>
<![endif]-->
<script src="./libs/jquery.min.js"></script>
<script src="./libs/jquery-ui.min.js"></script>
<script type="text/javascript" src="./libs/jquery.slimscroll.min.js"></script>
<script type="text/javascript" src="./libs/jquery.fullPage.js"></script>
<script type="text/javascript" src="./js/examples.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
anchors: ['one', 'two', 'three','four'],
sectionsColor: ['#1bbc9b','#8FB98B', '#7E8F7C','#C63D0F'],
navigation: true,
navigationPosition: 'right',
navigationTooltips: ['挑战雄狮', '认识自己', '聚集勇气', '唤醒睡狮']
});
});
//Force Https
//(function forceHttps(){
// var ishttps = 'https:' == document.location.protocol ? true: false;
// if(ishttps == false){
// location.href = location.href.replace("http://", "https://");
// }
//})();
</script>
</head>
<body>
<div id="fullpage">
<div class="section " id="section0">
<div class="intro">
<h1>Challions</h1>
<p>挑战雄狮,唤醒你内心的睡狮</p>
</div>
</div>
<div class="section" id="section1">
<div class="intro">
<h1>认识自己</h1>
<p>
你应该知道自己要的是什么
</p>
</div>
</div>
<div class="section" id="section2">
<div class="intro">
<h1>聚集勇气</h1>
<p>
人和人,其实是凭勇气分出区别的
</p>
</div>
</div>
<div class="section" id="section3">
<div class="intro">
<h1>唤醒睡狮</h1>
<p>
若没有梦想,和咸鱼有什么分别
</p>
</div>
</div>
</div>
</body>
</html>