在带有片段的部分中,我想仅对片段使用自动播放。
....
<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 :(得分:0)
在
部分设置属性data-autoslide=milliseconds
...
<section id="fragments" data-autoslide="1000">
...
自动播放适用于片段,但这会自动播放到下一部分。 见http://codepen.io/tstangenberg/pen/OMGmbm