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

How can I include a slide progress indicator or slide number? #29

Closed dileep-kishore closed 6 years ago

dileep-kishore commented 6 years ago

I would like to include a slide progress indicator in my presentation. Something similar to what spectacle has.

Is there an API I can use to keep track of this?

yaodingyd commented 6 years ago

You can easily achieve this by using slides and currentSlideIndex in your Slideshow component.

example: link

dileep-kishore commented 6 years ago

Thank you!