test.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>reveal.js - Tests</title>
  6. <link rel="stylesheet" href="../css/reveal.css">
  7. <link rel="stylesheet" href="qunit-1.12.0.css">
  8. </head>
  9. <body style="overflow: auto;">
  10. <div id="qunit"></div>
  11. <div id="qunit-fixture"></div>
  12. <div class="reveal" style="display: none;">
  13. <div class="slides">
  14. <section data-background-image="examples/assets/image1.png">
  15. <h1>1</h1>
  16. <img data-src="fake-url.png">
  17. <video data-src="fake-url.mp4"></video>
  18. <audio data-src="fake-url.mp3"></audio>
  19. <aside class="notes">speaker notes 1</aside>
  20. </section>
  21. <section>
  22. <section data-background="examples/assets/image2.png" data-notes="speaker notes 2">
  23. <h1>2.1</h1>
  24. </section>
  25. <section>
  26. <h1>2.2</h1>
  27. </section>
  28. <section>
  29. <h1>2.3</h1>
  30. </section>
  31. </section>
  32. <section id="fragment-slides">
  33. <section>
  34. <h1>3.1</h1>
  35. <ul>
  36. <li class="fragment">4.1</li>
  37. <li class="fragment">4.2</li>
  38. <li class="fragment">4.3</li>
  39. </ul>
  40. </section>
  41. <section>
  42. <h1>3.2</h1>
  43. <ul>
  44. <li class="fragment" data-fragment-index="0">4.1</li>
  45. <li class="fragment" data-fragment-index="0">4.2</li>
  46. </ul>
  47. <iframe data-src="http://example.com"></iframe>
  48. </section>
  49. <section>
  50. <h1>3.3</h1>
  51. <ul>
  52. <li class="fragment" data-fragment-index="1">3.3.1</li>
  53. <li class="fragment" data-fragment-index="4">3.3.2</li>
  54. <li class="fragment" data-fragment-index="4">3.3.3</li>
  55. </ul>
  56. </section>
  57. </section>
  58. <section>
  59. <h1>4</h1>
  60. </section>
  61. </div>
  62. </div>
  63. <script src="../lib/js/head.min.js"></script>
  64. <script src="../js/reveal.js"></script>
  65. <script src="qunit-1.12.0.js"></script>
  66. <script src="test.js"></script>
  67. </body>
  68. </html>