-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
95 lines (87 loc) · 4.46 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
<!doctype html>
<!--[if lt IE 9]><html class="ie"><![endif]-->
<!--[if gte IE 9]><!--><html><!--<![endif]-->
<head>
<title>jQuery Auto Pagination</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="external/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="external/bootstrap/css/bootstrap-responsive.min.css" />
<style>
body { font-size:1.1em; }
</style>
</head>
<body>
<div id="content">
<div class="container">
<div class="row">
<div class="span12">
<div class="hero-unit">
<h1>jQuery Auto Pagination <small>Verson 0.1.0</small></h1>
<p>An unobstrusive auto pagination plugin for JQuery</p>
<a href="https://github.com/pengkong/jquery-auto-pagination" class="btn btn-primary btn-large">Download</a>
<hr />
<ul class="nav nav-pills">
<li class="active"><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="installation.html">Installation</a></li>
</ul>
</div>
<div class="page-header">
<h2>Introduction</h2>
</div>
<p>jQuery Auto Pagination converts paginated webpages into a single page that loads subsequent pages automatically as the user scrolls downwards. To see how this works visit the <a href="demo.html">demo page</a>.</p>
<div class="page-header">
<h2>Features</h2>
</div>
<ul>
<li>Extremely small file size. Minified js file is only ~1.4kb.</li>
<li>Extremely low dependency on page DOM structure. Only two DOM elements are required, <code>nextPageSelector</code> and <code>panelSelector</code>. The <code>nextPageSelector</code> link can be in any format, running page numbers are not required.</li>
</ul>
<div class="page-header">
<h2>Code Repository</h2>
</div>
<p>jQuery Auto Pagination is hosted on GitHub at:<br />
<a href="https://github.com/pengkong/jquery-auto-pagination">https://github.com/pengkong/jquery-auto-pagination</a></p>
<div class="page-header">
<h2>Support</h2>
</div>
<p>For support regarding issues with this plugin, please go to:<br />
<a href="https://github.com/pengkong/jquery-auto-pagination/issues">https://github.com/pengkong/jquery-auto-pagination/issues</a></p>
<div class="page-header">
<h2>Author</h2>
</div>
<p>jQuery Auto Pagination is written and maintained by <a href="http://pengkong.blogspot.sg/">Choy Peng Kong</a>, you can reach him at <a href="mailto:pengkong@gmail.com">pengkong@gmail.com</a>.</p>
<div class="page-header">
<h2>Acknowledgements</h2>
</div>
<p>jQuery Auto Pagination is inspired by <a href="http://www.infinite-scroll.com/">Infinite Scroll</a> by <a href="http://paulirish.com/">Paul Irish</a> & <a href="http://lukeshumard.com/">Luke Shumard</a></p>
<p>The following works were used in building this project:</p>
<ul>
<li>jQuery by <a href="http://ejohn.org/">John Resig</a> and the <a href="https://jquery.org/team/">jQuery Team</a> - <a href="http://jquery.com/">http://jquery.com/</a></li>
<li>ScrollUp by <a href="http://markgoodyear.com">Mark Good Year</a> - <a href="http://markgoodyear.com/labs/scrollup/">http://markgoodyear.com/labs/scrollup/</a></li>
<li>Twitter Bootstrap by <a href="http://markdotto.com/">Mark Otto</a> and <a href="https://twitter.com/fat">Jacob Thornton</a> - <a href="http://twitter.github.io/bootstrap/">http://twitter.github.io/bootstrap/</a></li>
<li>SyntaxHighlighter by <a href="http://alexgorbatchev.com/">Alex Gorbatchev</a> - <a href="http://alexgorbatchev.com/SyntaxHighlighter/">http://alexgorbatchev.com/SyntaxHighlighter/</a></li>
</ul>
<div class="page-header">
<h2>Changelogs</h2>
</div>
<ul>
<li><strong>v0.1.0 - 19 May 2013</strong><br />
Initial release</li>
</ul>
<div class="page-header">
<h2>Licenses</h2>
</div>
<p>jQuery Auto Pagination is licensed under both MIT and GPL</p>
<ul>
<li><a href="http://www.opensource.org/licenses/mit-license.php">http://www.opensource.org/licenses/mit-license.php</a></li>
<li><a href="http://www.gnu.org/licenses/gpl.html">http://www.gnu.org/licenses/gpl.html</a></li>
</ul>
<p style="text-align:center; margin:50px 0; padding:20px 0; color:#999; border-top:1px dashed #eee;"><small>- End of Page -</small></p>
</div>
</div>
</div>
</div>
</body>
</html>