Hello,
First thank for the plugin.
Is there any solution to use autoplay without pause on each item?
Thank you.
Don't know what effect you want to achieve, but you may try setting up autoplay option to some really low number.
new Glide('.glide', {
autoplay: 1
});
Thank you for your reply, what I'm trying to achieve is something like this:
https://codepen.io/team/css-tricks/pen/gamYOy
Actually, Glide.js was not intended to making something like this and I would recommend you to search another script. There are way more performant ways for this kind of animation.
However, with specific options configuration, you may achieve a similar effect: https://codepen.io/jedrzejchalubek/pen/jxEWdg
new Glide('.glide', {
type: 'carousel',
autoplay: 1,
animationDuration: 3000,
animationTimingFunc: 'linear',
perView: 3
}).mount()
You may also need to disable dragging/swiping and get rid of controls.
Most helpful comment
Actually, Glide.js was not intended to making something like this and I would recommend you to search another script. There are way more performant ways for this kind of animation.
However, with specific options configuration, you may achieve a similar effect: https://codepen.io/jedrzejchalubek/pen/jxEWdg
You may also need to disable dragging/swiping and get rid of controls.