API
loop
Enable infinite looping
Whether the slider loops infinitely.
loop: boolean; // default: trueExample: Loop enabled (default)
new BlazeSlider(el, {
all: {
loop: true,
slidesToShow: 3,
},
});Example: Loop disabled
Navigation stops at first and last slides:
new BlazeSlider(el, {
all: {
loop: false,
slidesToShow: 3,
},
});