impress / impress.js

It's a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com.
http://impress.js.org
MIT License
37.62k stars 6.67k forks source link

Disable autoplay? #862

Closed b1ek closed 10 months ago

b1ek commented 10 months ago

Hey y'all, I am building a presentation with this framework, and I find that feature annoying. Is there an option to disable it for the presentation?

janishutz commented 10 months ago

Yes, you can do this by omitting the data-autoplay argument in the <div id="impress" data-autoplay="0"></div> or by setting it to 0. See the docs here (that's from the upcoming impress.js website). @b1ek

b1ek commented 10 months ago

Yes, you can do this by omitting the data-autoplay argument in the <div id="impress" data-autoplay="0"></div> or by setting it to 0. See the docs here (that's from the upcoming impress.js website). @b1ek

I see. Thank you!