-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontinuousVertical.html
More file actions
114 lines (100 loc) · 4.37 KB
/
continuousVertical.html
File metadata and controls
114 lines (100 loc) · 4.37 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
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Continuous scrolling - fullPage.js</title>
<meta name="author" content="Matthew Howell" />
<meta name="description" content="fullPage continuous scrolling demo." />
<meta name="keywords" content="fullpage,jquery,demo,scroll,loop,continuous" />
<meta name="Resource-type" content="Document" />
<link rel="stylesheet" type="text/css" href="js/jquery.fullPage.css" />
<link rel="stylesheet" type="text/css" href="css/examples.css" />
<!--[if IE]>
<script type="text/javascript">
var console = { log: function() {} };
</script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="vendors/scrolloverflow.js"></script>
<script type="text/javascript" src="js/jquery.fullPage.js"></script>
<script type="text/javascript" src="js/examples.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
sectionsColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],
anchors: ['firstPage', 'secondPage', '3rdPage', '4thpage', 'lastPage'],
menu: '#menu',
continuousVertical: true
});
});
</script>
</head>
<body>
<select id="demosMenu">
<option selected>Choose Demo</option>
<option id="activeSlide">Active section and slide</option>
<option id="apple">Apple iPhone demo (animations)</option>
<option id="autoHeight">Auto height</option>
<option id="autoplayVideoAndAudio">Autoplay Video and Audio</option>
<option id="backgrounds">Background images</option>
<option id="backgroundsFixed">Fixed fullscreen backgrounds</option>
<option id="backgroundVideo">Background video</option>
<option id="callbacks">Callbacks</option>
<option id="continuousHorizontal">Continuous horizontal</option>
<option id="continuousVertical">Continuous vertical</option>
<option id="parallax">Parallax</option>
<option id="css3">CSS3</option>
<option id="dragAndMove">Drag And Move</option>
<option id="easing">Easing</option>
<option id="fadingEffect">Fading Effect</option>
<option id="fixedHeaders">Fixed headers</option>
<option id="gradientBackgrounds">Gradient backgrounds</option>
<option id="interlockedSlides">Interlocked Slides</option>
<option id="looping">Looping</option>
<option id="methods">Methods</option>
<option id="navigationV">Vertical navigation dots</option>
<option id="navigationH">Horizontal navigation dots</option>
<option id="noAnchor">No anchor links</option>
<option id="normalScroll">Normal scrolling</option>
<option id="normalScrollElements">Normal scroll elements</option>
<option id="offsetSections">Offset sections</option>
<option id="oneSection">One single section</option>
<option id="resetSliders">Reset sliders</option>
<option id="responsiveAutoHeight">Responsive Auto Height</option>
<option id="responsiveHeight">Responsive Height</option>
<option id="responsiveWidth">Responsive Width</option>
<option id="responsiveSlides">Responsive Slides</option>
<option id="scrollBar">Scroll bar enabled</option>
<option id="scrollHorizontally">Scroll horizontally</option>
<option id="scrollOverflow">Scroll inside sections and slides</option>
<option id="scrollOverflowReset">ScrollOverflow Reset</option>
<option id="lazyLoad">Lazy load</option>
<option id="scrollingSpeed">Scrolling speed</option>
</select>
<ul id="menu">
<li data-menuanchor="firstPage" class="active"><a href="#firstPage">First slide</a></li>
<li data-menuanchor="secondPage"><a href="#secondPage">Second slide</a></li>
<li data-menuanchor="3rdPage"><a href="#3rdPage">Third slide</a></li>
</ul>
<div id="fullpage">
<div class="section " id="section0">
<h1>fullPage.js</h1>
<p>Continuous Scrolling Enabled</p>
<img src="images/fullPage.png" alt="fullPage" />
</div>
<div class="section" id="section1">
<div class="intro">
<h1>Around the world scrolling</h1>
<p>Go to the first section and scroll up or to the last one and scroll down to see how it works.</p>
</div>
</div>
<div class="section" id="section2">
<div class="intro">
<h1>Scroll Down</h1>
<p>And it will animate down to the first section</p>
</div>
</div>
</div>
</body>
</html>