Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | |
| 4 | <head> |
| 5 | <meta charset="utf-8"> |
| 6 | |
| 7 | <title>reveal.js - Video, Audio and Iframes</title> |
| 8 | |
| 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
| 10 | |
| 11 | <link rel="stylesheet" href="../dist/reveal.css"> |
| 12 | <link rel="stylesheet" href="../dist/theme/white.css" id="theme"> |
| 13 | </head> |
| 14 | |
| 15 | <body> |
| 16 | |
| 17 | <div class="reveal"> |
| 18 | |
| 19 | <div class="slides"> |
| 20 | |
| 21 | <section> |
| 22 | <h2>Examples of embedded Video, Audio and Iframes</h2> |
| 23 | </section> |
| 24 | |
| 25 | <section> |
| 26 | <h2>Iframe</h2> |
| 27 | <iframe data-autoplay width="700" height="540" src="https://slides.com/news/auto-animate/embed" frameborder="0"></iframe> |
| 28 | </section> |
| 29 | |
| 30 | <section data-background-iframe="https://www.youtube.com/embed/h1_nyI3z8gI" data-background-interactive> |
| 31 | <h2 style="color: #fff;">Iframe Background</h2> |
| 32 | </section> |
| 33 | |
| 34 | <section> |
| 35 | <h2>Video</h2> |
| 36 | <video src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" data-autoplay></video> |
| 37 | </section> |
| 38 | |
| 39 | <section data-background-video="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"> |
| 40 | <h2>Background Video</h2> |
| 41 | </section> |
| 42 | |
| 43 | <section> |
| 44 | <h2>Auto-playing audio</h2> |
| 45 | <audio src="assets/beeping.wav" data-autoplay></audio> |
| 46 | </section> |
| 47 | |
| 48 | <section> |
| 49 | <h2>Audio inside slide fragments</h2> |
| 50 | <div class="fragment"> |
| 51 | Beep 1 |
| 52 | <audio src="assets/beeping.wav" data-autoplay></audio> |
| 53 | </div> |
| 54 | <div class="fragment"> |
| 55 | Beep 2 |
| 56 | <audio src="assets/beeping.wav" data-autoplay></audio> |
| 57 | </div> |
| 58 | </section> |
| 59 | |
| 60 | <section> |
| 61 | <h2>Audio with controls</h2> |
| 62 | <audio src="assets/beeping.wav" controls></audio> |
| 63 | </section> |
| 64 | |
| 65 | </div> |
| 66 | |
| 67 | </div> |
| 68 | |
| 69 | <script src="../dist/reveal.js"></script> |
| 70 | <script> |
| 71 | Reveal.initialize({hash: true}); |
| 72 | </script> |
| 73 | |
| 74 | </body> |
| 75 | </html> |