📄️ Adding custom CSS transitions for elements in slides
There is a lighter alternative to "animated blocks" feature (if you don't need animations in old IE, or if you need some advanced transitions).
📄️ Adding support for third-party video player
Step 1: initialize slider and save its object. (If you're using WordPress version you may skip this step)
📄️ Create slider from string/array that is not attached to DOM
If you need to create slider with slides that are not attached to DOM, this method is for you.
📄️ Creating play/pause button
1. Initialize slider as usual (autoStart variable is self descriptive):
📄️ Creating slider index indicator - "Slide 1 of 10"
1) Initialize slider as usual:
📄️ Dynamically add and remove slides
Side note: If you wish to change all slides at once please check this article.
📄️ Dynamically change imageScaleMode option
First of make sure that you call this code after slider is initialized.
📄️ Extending slider prototype, override any function
To override any function without modifying slider core - you may extend they prototype.
📄️ Replacing all slides dynamically
If you need to change all slides in your gallery completely, it's more efficient to destroy old one and initialize new than using appenSlide/removeSlide methods.