Tag: reveal.js

在reveal.js中随机化幻灯片

我有大约300张幻灯片的reveal.js演示文稿。 此演示文稿的目的是在会议室后面的显示器上以“自助服务terminal模式”循环播放幻灯片。 要创build一个“信息亭模式”,我有: Reveal.initialize({ controls: false, // hide the control arrows progress: false, // hide the progress bar history: false, // don't add each slide to browser history loop: true, // loop back to the beginning after last slide transition: fade, // fade between slides autoSlide: 5000, // advance automatically after 5000 ms }); 这工作得很好,但我想随机幻灯片。 […]