-
Notifications
You must be signed in to change notification settings - Fork 2
/
scroll_final.html
42 lines (33 loc) · 1.13 KB
/
scroll_final.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="fullpage.min.css" />
<script type="text/javascript" src="fullpage.min.js"></script>
<link rel="stylesheet" href="./scroll_final.css"/>
</head>
<body>
<div id="fullpage">
<div class="section s0">
<h2>section1 </h2>
</div>
<div class="section s1">
<h2>section2 </h2>
</div>
<div class="section s2">
<h2>section3 </h2>
</div>
<div class="section s3">
<h2>section4 </h2>
</div>
</div>
<script>
new fullpage("#fullpage", {
licenseKey: '723D80FA-B0594F94-822AB278-F3888EA3',
/*sectionsColor: ['#ffcccc' , '#ccffcc' , '#ffeecc' , '#ffeeaa'],*/
navigation: true,
});
</script>
</body>
</html>