加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
reveal.js.template.html 2.98 KB
一键复制 编辑 原始数据 按行查看 历史
<!doctype html>
<html lang="zh-cn">
<!-- saved from url=(0016)http://localhost -->
<head>
<meta charset="{encoding}">
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>{title}</title>
<meta name="description" content="{description}">
<meta name="author" content="{author}">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="{revealPath}css/reveal.css">
<link rel="stylesheet" href="{revealPath}css/theme/black.css" id="theme">
<!-- LME css -->
<!--<link id='themeLink' rel="stylesheet" href="../../lesson_dark.css" type="text/css">-->
<link id='themeLink' rel="stylesheet" href="{lmeCssPath}" type="text/css">
<link id='themeLink' rel="stylesheet" href="{lmeCustomCssPath}" type="text/css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="{revealPath}lib/css/zenburn.css">
<!-- jQuery 1.7.0 -->
<script src="../../jquery-1.7.0.min.js"></script>
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? '{revealPath}css/print/pdf.css' : '{revealPath}css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">{sections}</div>
</div>
<script src="{revealPath}lib/js/head.min.js"></script>
<script src="{revealPath}js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize(&#7B;
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
&#7B; src: '{revealPath}lib/js/classList.js', condition: function() &#7B; return !document.body.classList; &#7D; &#7D;,
&#7B; src: '{revealPath}plugin/markdown/marked.js', condition: function() &#7B; return !!document.querySelector( '[data-markdown]' ); &#7D; &#7D;,
&#7B; src: '{revealPath}plugin/markdown/markdown.js', condition: function() &#7B; return !!document.querySelector( '[data-markdown]' ); &#7D; &#7D;,
&#7B; src: '{revealPath}plugin/highlight/highlight.js', async: true, callback: function() &#7B; hljs.initHighlightingOnLoad(); &#7D; &#7D;,
&#7B; src: '{revealPath}plugin/search/search.js', async: true &#7D;,
&#7B; src: '{revealPath}plugin/zoom-js/zoom.js', async: true &#7D;,
&#7B; src: '{revealPath}plugin/notes/notes.js', async: true &#7D;
]
&#7D;);
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化