Materialize Carousel Slider autoplay

Leandro Soriano picture Leandro Soriano · Apr 12, 2016 · Viewed 33.2k times · Source

Is there a parameter to make the materialize carousel slider to auto play?

$('.carousel').carousel();

for example (this parameter doesn't work):

$('.carousel').carousel({
   autoplay: true
});

Thank you!

Answer

Leandro Soriano picture Leandro Soriano · Apr 12, 2016

I resolved the problem with this:

$('.carousel').carousel({
    padding: 200    
});
autoplay();
function autoplay() {
    $('.carousel').carousel('next');
    setTimeout(autoplay, 4500);
}