-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfullpage.html
More file actions
48 lines (47 loc) · 1.51 KB
/
fullpage.html
File metadata and controls
48 lines (47 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0, user-scalable=no" name="viewport">
<title>Title</title>
<link rel="stylesheet" href="node_modules/fullpage.js/dist/jquery.fullpage.css">
</head>
<body>
<div id="fullpage">
<div class="section s1">
<img src="img/bc8.jpg" alt="">
</div>
<div class="section s2">
<img src="img/bc8.jpg" alt="">
</div>
<div class="section s3">
<img src="img/bc8.jpg" alt="">
</div>
<div class="section s4">
<img src="img/bc8.jpg" alt="">
</div>
<div class="section s5">
<img src="img/bc8.jpg" alt="">
</div>
<ul id="myMenu">
<li data-menuanchor="firstPage" class="active"><a href="#firstPage">First section</a></li>
<li data-menuanchor="secondPage"><a href="#secondPage">Second section</a></li>
<li data-menuanchor="thirdPage"><a href="#thirdPage">Third section</a></li>
<li data-menuanchor="fourthPage"><a href="#fourthPage">Fourth section</a></li>
<li data-menuanchor="lastPage"><a href="#lastPage">Fourth section</a></li>
</ul>
</div>
<script src="//cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
<script src="node_modules/fullpage.js/vendors/jquery.easings.min.js"></script>
<script src="node_modules/fullpage.js/dist/jquery.fullpage.min.js"></script>
<script>
$().ready(function(){
$('#fullpage').fullpage({
navigation: true,
anchors: ['firstPage', 'secondPage', 'thirdPage', 'fourthPage', 'lastPage'],
menu: '#myMenu'
})
})
</script>
</body>
</html>