Skip to main content

draggable

it is a boolean value indicating whether the slider should be draggable or not

default

draggable: true

Example draggable: true (default)

new BlazeSlider(el, {
all: {
draggable: true, // <--
slidesToShow: 3,
},
})
1
2
3
4
5
6

Example draggable: false

Now Try to drag the slider - You won't be able to drag it. This can be useful to programmatically control the slider


```javascript
new BlazeSlider(el, {
all: {
draggable: false, // <--
slidesToShow: 4,
},
})
1
2
3
4
5
6