Skip to content

Instantly share code, notes, and snippets.

@abennouna
Last active December 17, 2015 03:19
Show Gist options
  • Save abennouna/5541931 to your computer and use it in GitHub Desktop.
Save abennouna/5541931 to your computer and use it in GitHub Desktop.
Le Lab by tellibus : simplyScroll - http://tellibus.com/lab/simplyScroll
<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>
@abennouna
Copy link
Author

La page officielle du fork se trouve sur http://tellibus.com/lab/simplyScroll

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment