我想要所有的reveal.js幻灯片to start at the top,因此我将配置中的center
选项修改为false
。但是,我想要一个特定的幻灯片重新启用该配置。有什么我可以添加到<section>
括号来修改它吗?像这样的东西(它不起作用):
<section id="questions" data-markdown data-center="true">
<script type="text/template">
#Questions?
</script>
</section>
的问题类似
答案 0 :(得分:4)
您可以使用data-state
执行此操作:
<section data-state="centerText" data-markdown>
# Questions?
</section>
然后在<script>
(Reveal.initialize()
之后)的末尾添加以下内容:
Reveal.addEventListener( 'centerText', function() {
Reveal.configure({center: true});
}, false );
这会将文字居中放在data-state="centerText"
的幻灯片中。