Link2Twenty / l2t-paper-slider

Polymer element for displaying slides in a carousel
https://www.webcomponents.org/element/Link2Twenty/l2t-paper-slider
52 stars 24 forks source link

Auto play #1

Closed Link2Twenty closed 8 years ago

Link2Twenty commented 8 years ago

Add auto play, where user can choose pause time.

Link2Twenty commented 8 years ago

Now there are methods to move to through the slides.

You can auto move along every 5 seconds with something like

setInterval(function() {
  document.querySelector('l2t-paper-slider').moveNext();
}, 5000);
document.querySelector('l2t-paper-slider').moveNext();
document.querySelector('l2t-paper-slider').movePrev();

I want to make an auto method that paused the slide on mouseover though. I'll look at that in the next few weeks.