This repository will not be updated. The repository will be kept available in read-only mode.
Scrollable Pagination with previews of the content of the page you would like to visit. This is UX design principle accompanied by a jquery plugin.
http://jensmartsch.de/rethinkpagination
You can install with Bower:
bower install rethinkpaginationGit clone rethinkpagination to the place where you want to install it:
git clone https://github.com/jmar/rethinkpagination.git
Add the stylesheet to your head
<link rel="stylesheet" href="styles/rethinkpagination.css">In the foot of your web page before the closing body tag:
<script src="path/to/jquery.js"></script>
<script src="path/to/rethinkpagination/scripts/rethinkpagination.min.js"></script>
<script>
jQuery(function($) {
$('.pagination').rethinkpagination({options});
});
</script>You can also call rethinkpagination with options as an object:
jQuery(function($) {
$('.pagination').rethinkpagination({animation: 'fadeInDown', selector: 'h1'});
});
</script>- jQuery 1.7+
##Compatibility
Works in Firefox 22+, Chrome 20+, IE8+, Safari
(Coming soon)
-1.0.0 First stable release
Please, read the Contributing Guidelines for this project.