Zulko / eagle.js

A hackable slideshow framework built with Vue.js
https://zulko.github.io/eaglejs-demo/
ISC License
4.08k stars 222 forks source link

Is it possible to do auto slide with timers #27

Closed pybala closed 6 years ago

pybala commented 6 years ago

Is there any support for auto slide.

Thanks, Bala

yaodingyd commented 6 years ago

All slideshow's APIs are public.

You can use

...
mounted () {
    setInterval(() => {
      this.nextStep()
    }, 1000)
  }
...

inside your slideshow component.

pybala commented 6 years ago

Awesome.. thanks @yaodingyd