Glide: Can I make a continuously sliding/moving carousel?

Created on 14 Apr 2018  路  3Comments  路  Source: glidejs/glide

Hello,

First thank for the plugin.
Is there any solution to use autoplay without pause on each item?

Thank you.

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

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.

All 3 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Danielvandervelden picture Danielvandervelden  路  4Comments

robertu7 picture robertu7  路  6Comments

garygreen picture garygreen  路  3Comments

LostCrew picture LostCrew  路  3Comments

dkindnes picture dkindnes  路  5Comments