2016-02-16 75 views
0

在片段中,我想僅對片段使用自動播放功能。如何在reveal.js中使用部分自動播放功能?

.... 
<section id="fragments"> 
<h2>Things</h2> 
    <p>...</p> 
    <div style="text-align: left; margin-left: 30%"> 
    <p class="fragment"><i class="fa fa-long-arrow-right"></i> issue 1</p> 
    <p class="fragment"><i class="fa fa-long-arrow-right"></i> issue 2</p> 
    <p class="fragment"><i class="fa fa-long-arrow-right"></i> issue 3</p> 
    <p class="fragment"><i class="fa fa-long-arrow-right"></i> issue 4</p> 
    </div> 
    <aside class="notes"> 
     This slide has fragments which are also stepped through in the notes window. 
    </aside> 
</section> 
... 

如何自動播放的片段?

回答

0

通過在部分

... 
<section id="fragments" data-autoslide="1000"> 
... 

自動播放作品的片段設置屬性data-autoslide=milliseconds,但這種自動播放下一節。 見http://codepen.io/tstangenberg/pen/OMGmbm

相關問題