所以我正在尝试运行幻灯片演示工具,以下代码假设初始化幻灯片,但是我得到的错误就像'未捕获的引用错误:揭示未定义',我不知道了解因为代码只需要开始幻灯片放映。 这是代码:
Reveal.initialize({
// Display controls in the bottom right corner
controls: true,
// Display a presentation progress bar
progress: false,
// Click above progress bar for quick navigation - only works if progress is true
progressNavigation: true,
// If true; each slide will be pushed to the browser history
history: false,
// Flags if mouse wheel navigation should be enabled
mouseWheel: true,
// Apply a 3D roll to links on hover
rollingLinks: true,
// UI style
theme: query.theme || 'default', // default/neon
// Transition style
transition: query.transition || 'concave' // default/cube/page/concave/linear(2d)
});
等待启蒙。谢谢。
答案 0 :(得分:0)
这就是头脑
<link rel="stylesheet" href="reveal.css">
/* jQuery needs to be attached */
<script src="jquery.min.js" type="text/javascript"></script>
/* Then just attach the Reveal plugin */
<script src="jquery.reveal.js" type="text/javascript"></script>
显然,你必须下载每一个并将它们放入你的项目中 - 在网站上有一个链接,说明下载,你得到它的地方