1
0

demo.html 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>reveal.js – The HTML Presentation Framework</title>
  6. <meta name="description" content="A framework for easily creating beautiful presentations using HTML">
  7. <meta name="author" content="Hakim El Hattab">
  8. <meta name="apple-mobile-web-app-capable" content="yes">
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="stylesheet" href="dist/reset.css">
  12. <link rel="stylesheet" href="dist/reveal.css">
  13. <link rel="stylesheet" href="dist/theme/black.css" id="theme">
  14. <!-- Theme used for syntax highlighting of code -->
  15. <link rel="stylesheet" href="lib/css/monokai.css">
  16. </head>
  17. <body>
  18. <div class="reveal">
  19. <!-- Any section element inside of this container is displayed as a slide -->
  20. <div class="slides">
  21. <section>
  22. <h1>Reveal.js</h1>
  23. <h3>The HTML Presentation Framework</h3>
  24. <p>
  25. <small>Created by <a href="http://hakim.se">Hakim El Hattab</a> and <a href="https://github.com/hakimel/reveal.js/graphs/contributors">contributors</a></small>
  26. </p>
  27. </section>
  28. <section>
  29. <h2>Hello There</h2>
  30. <p>
  31. reveal.js enables you to create beautiful interactive slide decks using HTML. This presentation will show you examples of what it can do.
  32. </p>
  33. </section>
  34. <!-- Example of nested vertical slides -->
  35. <section>
  36. <section>
  37. <h2>Vertical Slides</h2>
  38. <p>Slides can be nested inside of each other.</p>
  39. <p>Use the <em>Space</em> key to navigate through all slides.</p>
  40. <br>
  41. <a href="#" class="navigate-down">
  42. <img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
  43. </a>
  44. </section>
  45. <section>
  46. <h2>Basement Level 1</h2>
  47. <p>Nested slides are useful for adding additional detail underneath a high level horizontal slide.</p>
  48. </section>
  49. <section>
  50. <h2>Basement Level 2</h2>
  51. <p>That's it, time to go back up.</p>
  52. <br>
  53. <a href="#/2">
  54. <img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="transform: rotate(180deg); -webkit-transform: rotate(180deg);">
  55. </a>
  56. </section>
  57. </section>
  58. <section>
  59. <h2>Slides</h2>
  60. <p>
  61. Not a coder? Not a problem. There's a fully-featured visual editor for authoring these, try it out at <a href="https://slides.com" target="_blank">https://slides.com</a>.
  62. </p>
  63. </section>
  64. <section data-auto-animate>
  65. <h2 data-id="code-title">Pretty Code</h2>
  66. <pre data-id="code-animation"><code class="hljs" data-trim data-line-numbers>
  67. import React, { useState } from 'react';
  68. function Example() {
  69. const [count, setCount] = useState(0);
  70. return (
  71. ...
  72. );
  73. }
  74. </code></pre>
  75. <p>Code syntax highlighting courtesy of <a href="https://highlightjs.org/usage/">highlight.js</a>.</p>
  76. </section>
  77. <section data-auto-animate>
  78. <h2 data-id="code-title">With animations</h2>
  79. <pre data-id="code-animation"><code class="hljs" data-trim data-line-numbers="|4,8-11|17|22-24">
  80. import React, { useState } from 'react';
  81. function Example() {
  82. const [count, setCount] = useState(0);
  83. return (
  84. &lt;div&gt;
  85. &lt;p&gt;You clicked {count} times&lt;/p&gt;
  86. &lt;button onClick={() =&gt; setCount(count + 1)}&gt;
  87. Click me
  88. &lt;/button&gt;
  89. &lt;/div&gt;
  90. );
  91. }
  92. function SecondExample() {
  93. const [count, setCount] = useState(0);
  94. return (
  95. &lt;div&gt;
  96. &lt;p&gt;You clicked {count} times&lt;/p&gt;
  97. &lt;button onClick={() =&gt; setCount(count + 1)}&gt;
  98. Click me
  99. &lt;/button&gt;
  100. &lt;/div&gt;
  101. );
  102. }
  103. </code></pre>
  104. </section>
  105. <section>
  106. <h2>Point of View</h2>
  107. <p>
  108. Press <strong>ESC</strong> to enter the slide overview.
  109. </p>
  110. <p>
  111. Hold down the <strong>alt</strong> key (<strong>ctrl</strong> in Linux) and click on any element to zoom towards it using <a href="http://lab.hakim.se/zoom-js">zoom.js</a>. Click again to zoom back out.
  112. </p>
  113. <p>
  114. (NOTE: Use ctrl + click in Linux.)
  115. </p>
  116. </section>
  117. <section>
  118. <h2>Touch Optimized</h2>
  119. <p>
  120. Presentations look great on touch devices, like mobile phones and tablets. Simply swipe through your slides.
  121. </p>
  122. </section>
  123. <section data-markdown>
  124. <script type="text/template">
  125. ## Markdown support
  126. Write content using inline or external Markdown.
  127. Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
  128. ```
  129. <section data-markdown>
  130. ## Markdown support
  131. Write content using inline or external Markdown.
  132. Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).
  133. </section>
  134. ```
  135. </script>
  136. </section>
  137. <section>
  138. <section id="fragments">
  139. <h2>Fragments</h2>
  140. <p>Hit the next arrow...</p>
  141. <p class="fragment">... to step through ...</p>
  142. <p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
  143. <aside class="notes">
  144. This slide has fragments which are also stepped through in the notes window.
  145. </aside>
  146. </section>
  147. <section>
  148. <h2>Fragment Styles</h2>
  149. <p>There's different types of fragments, like:</p>
  150. <p class="fragment grow">grow</p>
  151. <p class="fragment shrink">shrink</p>
  152. <p class="fragment fade-out">fade-out</p>
  153. <p>
  154. <span style="display: inline-block;" class="fragment fade-right">fade-right, </span>
  155. <span style="display: inline-block;" class="fragment fade-up">up, </span>
  156. <span style="display: inline-block;" class="fragment fade-down">down, </span>
  157. <span style="display: inline-block;" class="fragment fade-left">left</span>
  158. </p>
  159. <p class="fragment fade-in-then-out">fade-in-then-out</p>
  160. <p class="fragment fade-in-then-semi-out">fade-in-then-semi-out</p>
  161. <p>Highlight <span class="fragment highlight-red">red</span> <span class="fragment highlight-blue">blue</span> <span class="fragment highlight-green">green</span></p>
  162. </section>
  163. </section>
  164. <section id="transitions">
  165. <h2>Transition Styles</h2>
  166. <p>
  167. You can select from different transitions, like: <br>
  168. <a href="?transition=none#/transitions">None</a> -
  169. <a href="?transition=fade#/transitions">Fade</a> -
  170. <a href="?transition=slide#/transitions">Slide</a> -
  171. <a href="?transition=convex#/transitions">Convex</a> -
  172. <a href="?transition=concave#/transitions">Concave</a> -
  173. <a href="?transition=zoom#/transitions">Zoom</a>
  174. </p>
  175. </section>
  176. <section id="themes">
  177. <h2>Themes</h2>
  178. <p>
  179. reveal.js comes with a few themes built in: <br>
  180. <!-- Hacks to swap themes after the page has loaded. Not flexible and only intended for the reveal.js demo deck. -->
  181. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;">Black (default)</a> -
  182. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;">White</a> -
  183. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/league.css'); return false;">League</a> -
  184. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/sky.css'); return false;">Sky</a> -
  185. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/beige.css'); return false;">Beige</a> -
  186. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/simple.css'); return false;">Simple</a> <br>
  187. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/serif.css'); return false;">Serif</a> -
  188. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/blood.css'); return false;">Blood</a> -
  189. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/night.css'); return false;">Night</a> -
  190. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/moon.css'); return false;">Moon</a> -
  191. <a href="#" onclick="document.getElementById('theme').setAttribute('href','css/theme/solarized.css'); return false;">Solarized</a>
  192. </p>
  193. </section>
  194. <section>
  195. <section data-background="#dddddd">
  196. <h2>Slide Backgrounds</h2>
  197. <p>
  198. Set <code>data-background="#dddddd"</code> on a slide to change the background color. All CSS color formats are supported.
  199. </p>
  200. <a href="#" class="navigate-down">
  201. <img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
  202. </a>
  203. </section>
  204. <section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png">
  205. <h2>Image Backgrounds</h2>
  206. <pre><code class="hljs html">&lt;section data-background="image.png"&gt;</code></pre>
  207. </section>
  208. <section data-background="https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png" data-background-repeat="repeat" data-background-size="100px">
  209. <h2>Tiled Backgrounds</h2>
  210. <pre><code class="hljs html" style="word-wrap: break-word;">&lt;section data-background="image.png" data-background-repeat="repeat" data-background-size="100px"&gt;</code></pre>
  211. </section>
  212. <section data-background-video="https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm" data-background-color="#000000">
  213. <div style="background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px;">
  214. <h2>Video Backgrounds</h2>
  215. <pre><code class="hljs html" style="word-wrap: break-word;">&lt;section data-background-video="video.mp4,video.webm"&gt;</code></pre>
  216. </div>
  217. </section>
  218. <section data-background="http://i.giphy.com/90F8aUepslB84.gif">
  219. <h2>... and GIFs!</h2>
  220. </section>
  221. </section>
  222. <section data-transition="slide" data-background="#4d7e65" data-background-transition="zoom">
  223. <h2>Background Transitions</h2>
  224. <p>
  225. Different background transitions are available via the backgroundTransition option. This one's called "zoom".
  226. </p>
  227. <pre><code class="hljs javascript">Reveal.configure({ backgroundTransition: 'zoom' })</code></pre>
  228. </section>
  229. <section data-transition="slide" data-background="#b5533c" data-background-transition="zoom">
  230. <h2>Background Transitions</h2>
  231. <p>
  232. You can override background transitions per-slide.
  233. </p>
  234. <pre><code class="hljs html" style="word-wrap: break-word;">&lt;section data-background-transition="zoom"&gt;</code></pre>
  235. </section>
  236. <section data-background-iframe="https://hakim.se" data-background-interactive>
  237. <div style="position: absolute; width: 40%; right: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 5px 25px rgba(0,0,0,0.2); background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; font-size: 20px; text-align: left;">
  238. <h2>Iframe Backgrounds</h2>
  239. <p>Since reveal.js runs on the web, you can easily embed other web content. Try interacting with the page in the background.</p>
  240. </div>
  241. </section>
  242. <section>
  243. <h2>Marvelous List</h2>
  244. <ul>
  245. <li>No order here</li>
  246. <li>Or here</li>
  247. <li>Or here</li>
  248. <li>Or here</li>
  249. </ul>
  250. </section>
  251. <section>
  252. <h2>Fantastic Ordered List</h2>
  253. <ol>
  254. <li>One is smaller than...</li>
  255. <li>Two is smaller than...</li>
  256. <li>Three!</li>
  257. </ol>
  258. </section>
  259. <section>
  260. <h2>Tabular Tables</h2>
  261. <table>
  262. <thead>
  263. <tr>
  264. <th>Item</th>
  265. <th>Value</th>
  266. <th>Quantity</th>
  267. </tr>
  268. </thead>
  269. <tbody>
  270. <tr>
  271. <td>Apples</td>
  272. <td>$1</td>
  273. <td>7</td>
  274. </tr>
  275. <tr>
  276. <td>Lemonade</td>
  277. <td>$2</td>
  278. <td>18</td>
  279. </tr>
  280. <tr>
  281. <td>Bread</td>
  282. <td>$3</td>
  283. <td>2</td>
  284. </tr>
  285. </tbody>
  286. </table>
  287. </section>
  288. <section>
  289. <h2>Clever Quotes</h2>
  290. <p>
  291. These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">The nice thing about standards is that there are so many to choose from</q> and block:
  292. </p>
  293. <blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
  294. &ldquo;For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
  295. reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.&rdquo;
  296. </blockquote>
  297. </section>
  298. <section>
  299. <h2>Intergalactic Interconnections</h2>
  300. <p>
  301. You can link between slides internally,
  302. <a href="#/2/3">like this</a>.
  303. </p>
  304. </section>
  305. <section>
  306. <h2>Speaker View</h2>
  307. <p>There's a <a href="https://github.com/hakimel/reveal.js#speaker-notes">speaker view</a>. It includes a timer, preview of the upcoming slide as well as your speaker notes.</p>
  308. <p>Press the <em>S</em> key to try it out.</p>
  309. <aside class="notes">
  310. Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).
  311. </aside>
  312. </section>
  313. <section>
  314. <h2>Export to PDF</h2>
  315. <p>Presentations can be <a href="https://github.com/hakimel/reveal.js#pdf-export">exported to PDF</a>, here's an example:</p>
  316. <iframe data-src="https://www.slideshare.net/slideshow/embed_code/42840540" width="445" height="355" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:3px solid #666; margin-bottom:5px; max-width: 100%;" allowfullscreen> </iframe>
  317. </section>
  318. <section>
  319. <h2>Global State</h2>
  320. <p>
  321. Set <code>data-state="something"</code> on a slide and <code>"something"</code>
  322. will be added as a class to the document element when the slide is open. This lets you
  323. apply broader style changes, like switching the page background.
  324. </p>
  325. </section>
  326. <section data-state="customevent">
  327. <h2>State Events</h2>
  328. <p>
  329. Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.
  330. </p>
  331. <pre><code class="javascript" data-trim contenteditable style="font-size: 18px;">
  332. Reveal.on( 'customevent', function() {
  333. console.log( '"customevent" has fired' );
  334. } );
  335. </code></pre>
  336. </section>
  337. <section>
  338. <h2>Take a Moment</h2>
  339. <p>
  340. Press B or . on your keyboard to pause the presentation. This is helpful when you're on stage and want to take distracting slides off the screen.
  341. </p>
  342. </section>
  343. <section>
  344. <h2>Much more</h2>
  345. <ul>
  346. <li>Right-to-left support</li>
  347. <li><a href="https://github.com/hakimel/reveal.js#api">Extensive JavaScript API</a></li>
  348. <li><a href="https://github.com/hakimel/reveal.js#auto-sliding">Auto-progression</a></li>
  349. <li><a href="https://github.com/hakimel/reveal.js#parallax-background">Parallax backgrounds</a></li>
  350. <li><a href="https://github.com/hakimel/reveal.js#keyboard-bindings">Custom keyboard bindings</a></li>
  351. </ul>
  352. </section>
  353. <section style="text-align: left;">
  354. <h1>THE END</h1>
  355. <p>
  356. - <a href="https://slides.com">Try the online editor</a> <br>
  357. - <a href="https://github.com/hakimel/reveal.js">Source code &amp; documentation</a>
  358. </p>
  359. </section>
  360. </div>
  361. </div>
  362. <script type="module">
  363. import Reveal from '/dist/reveal.js';
  364. import Zoom from '/plugin/zoom/zoom.js';
  365. import Notes from '/plugin/notes/notes.js';
  366. import Search from '/plugin/search/search.js';
  367. import Markdown from '/plugin/markdown/markdown.js';
  368. import Highlight from '/plugin/highlight/highlight.js';
  369. // More info https://github.com/hakimel/reveal.js#configuration
  370. Reveal.initialize({
  371. controls: true,
  372. progress: true,
  373. center: true,
  374. hash: true,
  375. transition: 'slide', // none/fade/slide/convex/concave/zoom
  376. // More info https://github.com/hakimel/reveal.js#plugins
  377. plugins: [ Zoom, Notes, Search, Markdown, Highlight ]
  378. });
  379. </script>
  380. </body>
  381. </html>