-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (92 loc) · 3.79 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
<!DOCTYPE html>
<html lang="pt-br" class="no-js">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>ScrollToo</title>
<link rel="stylesheet" media="screen" href="//netdna.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link type="text/css" href="playground/test.css" rel="stylesheet">
</head>
<body>
<main>
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#one">Title</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="#one" data-offset="-55">one</a></li>
<li><a href="#two" data-offset="-55">two</a></li>
<li><a href="#three" data-offset="-55">three</a></li>
<li><a href="#four" data-offset="-55">four</a></li>
<li><a href="#five" data-offset="-55">five</a></li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#footer">footer</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#one" data-offset="-55">one</a></li>
<li><a href="#two" data-offset="-55">two</a></li>
<li><a href="#three" data-offset="-55">three</a></li>
<li><a href="#four" data-offset="-55">four</a></li>
<li><a href="#five" data-offset="-55">five</a></li>
</ul>
</li>
</ul>
</div>
</div><!-- /.navbar-collapse -->
</nav>
<section id="one" class="sections">
<div class="container">
<h2>I'm Section one</h2>
</div>
</section>
<section id="two" class="sections">
<div class="container">
<h2>I'm Section two</h2>
</div>
</section>
<section id="three" class="sections">
<div class="container">
<h2>I'm Section three</h2>
</div>
</section>
<section id="four" class="sections">
<div class="container">
<h2>I'm Section four</h2>
</div>
</section>
<section id="five" class="sections">
<div class="container">
<h2>I'm Section five</h2>
</div>
</section>
<footer id="footer" class="sections">
<div class="container">
<p>I'm Footer</p>
</div>
</footer>
</main>
<a href="#one" class="scrolltoo-top" data-offset="-55">Back to top</a>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="./scrolltoo.js"></script>
<script src="./playground/test.js"></script>
</body>
</html><!-- by nandomoreira.me -->