Last active
December 17, 2015 03:19
-
-
Save abennouna/5541931 to your computer and use it in GitHub Desktop.
Le Lab by tellibus : simplyScroll - http://tellibus.com/lab/simplyScroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="jquery.simplyscroll.css" type="text/css"> | |
<a href="#" id="goBack">Défiler vers l’arrière</a> | |
<a href="#" id="pause">Mettre en pause</a> | |
<a href="#" id="goFwd">Défiler vers l’avant</a> | |
<ul id="scroller"> | |
… | |
</ul> | |
<script src="jquery.min.js"></script> | |
<script src="jquery.simplyscroll.min.js"></script> | |
<script type="text/javascript"> | |
$(function() { | |
$("#scroller").simplyScroll({ | |
backButtonElement: "#goBack", // Option ajoutée par rapport à la version officielle | |
forwardButtonElement: "#goFwd", // Option ajoutée par rapport à la version officielle | |
pauseButtonElement: "#pause" // Option ajoutée par rapport à la version officielle | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
La page officielle du fork se trouve sur http://tellibus.com/lab/simplyScroll