flux.js example - single transition with no pagination
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
// Execute this code when the page has loaded | |
$(function() { | |
var slider = new flux.slider('#slider', { | |
transitions: ['swipe'], // Limit the transitions to just the swipe effect | |
pagination: false // Disable the pagination controls | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment