123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <title>reveal.js</title>
- <link rel="stylesheet" href="css/reset.css">
- <link rel="stylesheet" href="css/reveal.css">
- <link rel="stylesheet" href="css/theme/black.css">
-
- <link rel="stylesheet" href="lib/css/monokai.css">
-
- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
-
- <script>
- var link = document.createElement( 'link' );
- link.rel = 'stylesheet';
- link.type = 'text/css';
- link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
- document.getElementsByTagName( 'head' )[0].appendChild( link );
- </script>
- </head>
- <body>
- <div class="reveal">
- <div class="slides">
- <section>Slide 1</section>
- <section>Slide 2</section>
- <section>Slide 3</section>
- </div>
- </div>
- <script src="js/reveal.js"></script>
- <script>
-
-
-
- Reveal.initialize({
- chalkboard: {
-
- src: "chalkboard.json",
- },
- menu: {
-
-
- side: 'left',
-
-
-
-
- width: 'normal',
-
-
- numbers: false,
-
-
-
-
-
-
-
- titleSelector: 'h1, h2, h3, h4, h5, h6',
-
-
- useTextContentForMissingTitles: false,
-
-
- hideMissingTitles: false,
-
-
-
- markers: true,
-
-
-
- custom: false,
-
-
-
-
-
-
-
-
-
-
- themes: true,
-
-
-
-
-
-
- themesPath: 'css/theme/',
-
-
-
-
-
-
- transitions: true,
-
-
- openButton: true,
-
-
-
-
- openSlideNumber: false,
-
-
-
-
- keyboard: true,
-
-
-
-
-
-
-
- sticky: false,
-
-
-
-
- autoOpen: true,
-
-
-
-
-
- delayInit: false,
-
-
- openOnInit: false,
-
-
-
-
-
- loadIcons: true,
-
- custom: [
- { title: 'Links', icon: '<i class="fa fa-external-link">', src: 'links.html' },
- { title: 'About', icon: '<i class="fa fa-info">', content: '<p>This slidedeck is created with reveal.js</p>' }
- ]
- },
- hash: true,
- dependencies: [
- { src: 'plugin/markdown/marked.js' },
- { src: 'plugin/markdown/markdown.js' },
- { src: 'plugin/highlight/highlight.js' },
- { src: 'plugin/notes/notes.js', async: true },
-
- { src: 'reveal.js-plugins/chalkboard/chalkboard.js' },
- { src: 'node_modules/reveal.js-menu/menu.js' },
- ],
- keyboard: {
-
- 67: function() { RevealChalkboard.toggleNotesCanvas() },
- 66: function() { RevealChalkboard.toggleChalkboard() },
- 46: function() { RevealChalkboard.clear() },
- 8: function() { RevealChalkboard.reset() },
- 68: function() { RevealChalkboard.download() },
- 88: function() { RevealChalkboard.colorNext() },
- 89: function() { RevealChalkboard.colorPrev() },
-
- 82: function() { Recorder.toggleRecording(); },
- 90: function() { Recorder.downloadZip(); },
- 84: function() { Recorder.fetchTTS(); },
- },
- });
- </script>
- </body>
- </html>
|