Reputation: 147
Does anyone know how to prevent the nested slider to start upon loading? I've tried entering "$AutoPlay: false" inside "var nestedSliderOptions", but it doesn't work. Thanks in advance.
source: http://www.jssor.com/download.html examples-jquery > nested-slider.source.html
Upvotes: 0
Views: 1039
Reputation: 6985
There is no 'auto play' for the main slider and 3 child sliders by default. It is controlled by manual API call.
By removing following code, you will get what you want.
function OnMainSliderPark(currentIndex, fromIndex) {
$.each(nestedSliders, function (index, nestedSlider) {
nestedSlider.$Pause();
});
setTimeout(function () {
nestedSliders[currentIndex].$Play();
}, 2000);
}
jssor_slider1.$On($JssorSlider$.$EVT_PARK, OnMainSliderPark);
OnMainSliderPark(0, 0);
Also, the grid slider is a variation of nested slider.
Upvotes: 2