danieljpalmer / alptail

A collection of frontend components using Tailwind.css and Alpine.js.
GNU General Public License v3.0
312 stars 30 forks source link

Timer Slider #19

Open thefubon opened 3 years ago

thefubon commented 3 years ago

Please tell me how to add a timer to switch slides in this slider?

ryangjchandler commented 3 years ago

You could do something like this inside of your x-init / init function:

init() {
  setInterval(() => {
    if (this.selected === this.images.length - 1) {
      this.selected = 0
    } else {
      this.selected++
    }
  }, 1000)
}