forked from JoelBesada/scrollpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (61 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link rel="stylesheet" type="text/css" href="style/scrollpath.css" />
<link href="http://fonts.googleapis.com/css?family=Terminal+Dosis&subset=latin" rel="stylesheet" type="text/css">
<script type="text/javascript" src="script/lib/prefixfree.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="description" content="The plugin that lets you define custom scroll paths" />
<title>jQuery Scroll Path</title>
</head>
<body>
<nav>
<ul>
<li><a href="#start">1</a></li>
<li><a href="#description">2</a></li>
<li><a href="#syntax">3</a></li>
<li><a href="#scrollbar">4</a></li>
<li><a href="#rotations">5</a></li>
<li><a href="#rotations-rotated">6</a></li>
<li><a href="#source">7</a></li>
<li><a href="#follow">8</a></li>
</ul>
</nav>
<div>
<a href="" class="show-path">Show Path</a>
</div>
<div class="wrapper">
<div class="demo">
<h1>jQuery Scroll Path</h1>
<span class="arrow">↓</span> A Quick Demo <span class="arrow">↓</span>
</div>
<div class="description">
<span class="big">It's a plugin for defining custom scroll paths.</span>
</div>
<div class="syntax">
<span class="big">It uses canvas flavored syntax to draw lines and arcs.</span>
</div>
<div class="scrollbar">
<span class="big">It comes with a custom scrollbar.</span>
</div>
<div class="rotations">
<span class="big">It also does rotations</span>
<span class="upside-down big">in <a href="http://caniuse.com/#feat=transforms2d">supported</a> browsers.</span>
</div>
<div class="source">
<span class="big">It's available with documentation on <a href="https://github.com/JoelBesada/scrollpath">GitHub</a>.<span>
</div>
<div class="follow">
<span class="big">Feel free to <a href="https://twitter.com/JoelBesada">follow me</a> on Twitter. You can also be <span class="count">a kind person and</span> <a href="https://twitter.com/intent/tweet?original_referer=https%3A%2F%2Ftwitter.com%2Fabout%2Fresources%2Fbuttons&source=tweetbutton&text=jQuery%20Scroll%20Path%20Plugin&url=http%3A%2F%2Fjoelb.me%2Fscrollpath%2F&via=JoelBesada" class="tweet">tweet</a> this.</span>
</div>
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript" src="script/lib/jquery.easing.js"></script>
<script type="text/javascript" src="script/jquery.scrollpath.js"></script>
<script type="text/javascript" src="script/demo.js"></script>
</body>
</html>