-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·44 lines (40 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dynamic Scroller</title>
<link rel="stylesheet" href="css/master.css" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/jquery.scrollto.js"></script>
<script src="js/slowscroll.js"></script>
</head>
<body>
<!--scroller-->
<div class="scroller">
<div id="arrow_up" class="arrow" ><img src="images/up-arrow-new.png" alt=""/></div>
<div id="arrow_down" class="arrow arrow-down"><img src="images/down-arrow-new.png" alt=""/></div>
</div>
<section id="section1">
<h1>Slow Page scroll</h1>
<p>With this jquery plugin, you can scroll slowly up or down the page by just hovering over the arrows. This requires scrollto plugin.</p>
</section>
<section id="section2">
<h1>Section 2</h1>
</section>
<section id="section3">
<h1>Section 3</h1>
</section>
<section id="section4">
<h1>Section 4</h1>
</section>
<section id="section5">
<h1>Section 5</h1>
</section>
<section id="section6">
<h1>Section 6</h1>
</section>
<section id="section7">
<h1>Section 7</h1>
</section>
</body>
</html>