我一直有同样的问题 - 在Reveal.js中创建一组垂直幻灯片后,使用嵌套
<section>
<section>Content</section>
<section>Content</section>
</section>
垂直列表无法正常工作后的下一张幻灯片。我的代码编辑器不会将其识别为HTML,它会在所有幻灯片上显示新的幻灯片内容,而不是常规的Reveal.js格式。
我做错了什么?
答案 0 :(得分:1)
我使用以下结构:
<section>
<section>
<h3>First slide with vertical</h3>
</section>
<section>
<h4>First vertical slide</h4>
</section>
<section>
<h4>Second vertical slide</h4>
</section>
答案 1 :(得分:0)
我遇到了类似的问题。就我而言,我的HTML与
类似 <section>
<h1>Some heading</h1>
<section>Content</section>
<section>Content</section>
</section>
其他html导致了问题,并在每张幻灯片中显示。我认为对于垂直滑动,嵌套必须是立即的。
<section>
<section>Content</section>
<section>Content</section>
</section>
我必须删除在第二级section tag
和section tag
之间添加的html内容。