修改单个幻灯片的配置选项

时间:2015-07-07 19:37:11

标签: reveal.js

我想要所有的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>

Hide slide number on title page

的问题类似

1 个答案:

答案 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"的幻灯片中。