Hello,
I’m developing a new website under 1.8, and I’m trying to make an auto scroll nestable slider, just like this preview on splide site Auto Scroll - Splide
I’m using a custom type and my configuration are as follow:
{
"type": "loop",
"direction":"ltr",
"keyboard":"global",
"drag": "free",
"focus": "center",
"perPage": 3,
"height": "300px",
"gap": "25px",
"autoplay": true,
"pauseOnHover": true,
"keyboard": true,
"arrows": false,
"pagination": false,
"autoScroll": {
"enabled": true,
"interval": 0,
"pauseOnHover": true,
"reverse": false,
"speed": 5,
"animationSpeed": 1000
},
"breakpoints": {
"768": {
"perPage": 2
},
"480": {
"perPage": 1
}
}
}
The issue I’m facing is that, even though I’m setting the interval to “0” there is still delay between each slide change.
Thank you