-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.html
43 lines (42 loc) · 1.59 KB
/
home.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
<html>
<head>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="fullpage.js"></script>
<link rel="stylesheet" href="fullpage.css" />
<script src="semantic.min.js"></script>
<link rel="stylesheet" href="semantic.min.css" />
</head>
<body>
<div class="ui menu pointing fixed" id="menu">
<div class="right menu">
<a class="active item" data-menuanchor="firstPage" href="#firstPage">Page 1 </a>
<a class="item" data-menuanchor="secondPage" href="#secondPage">Page 2</a>
<a class="item" data-menuanchor="thirdPage" href="#thirdPage">Page 3</a>
</div>
</div>
<div id="fullpage">
<div class="section" id="section1">
<div class="p1-title">biohub</div>
</div>
<div class="section">
<div class="slide" data-anchor="slide1">Slide 2.1</div>
<div class="slide" data-anchor="slide2">Slide 2.2</div>
</div>
<div class="section">Section 3</div>
</div>
<script>
var myFullpage = new fullpage('#fullpage', {
menu: '#menu',
anchors: ['firstPage', 'secondPage', 'thirdPage'],
sectionsColor: ['#FFF', '#FFF', '#FFF'],
autoScrolling: false,
licenseKey: 'OPEN-SOURCE-GPLV3-LICENSE'
});
</script>
</body>
</html>
<script>
$(document).ready(function () {
})
</script>