presentations

Presentations
Log | Files | Refs

embedded-media.html (965B)


      1 <!doctype html>
      2 <html lang="en">
      3 
      4 	<head>
      5 		<meta charset="utf-8">
      6 
      7 		<title>reveal.js - Embedded Media</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="../../css/reveal.css">
     12 		<link rel="stylesheet" href="../../css/theme/default.css" id="theme">
     13 	</head>
     14 
     15 	<body>
     16 
     17 		<div class="reveal">
     18 
     19 			<div class="slides">
     20 
     21 				<section>
     22 					<h2>Embedded Media Test</h2>
     23 				</section>
     24 
     25 				<section>
     26 					<iframe data-autoplay width="420" height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c"></iframe>
     27 				</section>
     28 
     29 				<section>
     30 					<h2>Empty Slide</h2>
     31 				</section>
     32 
     33 				<section>
     34 					<h2>Auto-playing audio</h2>
     35 					<audio src="assets/beeping.wav" data-autoplay></audio>
     36 				</section>
     37 
     38 			</div>
     39 
     40 		</div>
     41 
     42 		<script src="../../js/reveal.js"></script>
     43 
     44 		<script>
     45 
     46 			Reveal.initialize({
     47 				transition: 'linear'
     48 			});
     49 
     50 		</script>
     51 
     52 	</body>
     53 </html>