El gran libro de html5 css3 y javascrip

Page 130

Video y audio <title>Reproductor de Video</title> <link rel="stylesheet" href="reproductor.css"> <script src="reproductor.js"></script> </head> <body> <section id="reproductor"> <video id="medio" width="720" height="400"> <source src="http://minkbooks.com/content/trailer.mp4"> <source src="http://minkbooks.com/content/trailer.ogg"> </video> <nav> <div id="botones"> <button type="button" id="reproducir">Reproducir</button> </div> <div id="barra"> <div id="progreso"></div> </div> <div style="clear: both"></div> </nav> </section> </body> </html> Listado 5-4. Plantilla HTML para nuestro reproductor de video.

Además del video, esta plantilla también incluye dos archivos para acceder a códigos externos. Uno de ellos es player.css para los siguientes estilos CSS:

body{ text-align: center; } header, section, footer, aside, nav, article, figure, figcaption, hgroup{ display : block; } #reproductor{ width: 720px; margin: 20px auto; padding: 5px; background: #999999; border: 1px solid #666666; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } nav{ margin: 5px 0px; }

109


Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.