|
|
Línea 9: |
Línea 9: |
| <div class="slide"> | | <div class="slide"> |
| * Recursos web para Webs de software: | | * Recursos web para Webs de software: |
− | * http://placeit.breezi.com
| + | : http://placeit.breezi.com |
− | * http://mockuphone.com
| + | : http://mockuphone.com |
− | * http://developer.android.com/distribute/promote/device-art.html
| + | : http://developer.android.com/distribute/promote/device-art.html |
− | * http://aarnis.com/demo.html
| + | : http://aarnis.com/demo.html |
− | * http://goo.gl/aLuT6e
| + | : http://goo.gl/aLuT6e |
| | | |
| </div> | | </div> |
Línea 21: |
Línea 21: |
| | | |
| <div class="slide"> | | <div class="slide"> |
| + | |
| ==Video en html5== | | ==Video en html5== |
| </div> | | </div> |
Revisión de 06:20 11 oct 2013
Usuario:Juanda/html5video/nav
Video en html5
Introducción
<!DOCTYPE HTML>
<html>
<body>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
<source src="movie.webm" type="video/webm">
Your browser does not support the video tag.
</video>
</body>
</html>
Video responsivo
- Declarar dimensiones "estáticas" no es buena idea:
<video width="400" height="300" ....
- Utilizaremos porcentajes: el vídeo se adaptará a su elemento contendedor.
- En html5 es bueno definir solo la anchura para que el video mantenga su proporción:
video {
width: 100% !important;
height: auto !important;
}
Vídeos de youtube, vimeo
Obtención de código
- Código inserción vídeos youtube:
<iframe width="640" height="480" src="http://www.youtube.com/embed/oDlsOyPKUTM" frameborder="0" allowfullscreen></iframe>
- Código inserción vídeos vimeo:
<iframe src="http://player.vimeo.com/video/57444237" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
- También se puede usar object y embed para insertar código no html. Por ejemplo youtube con Flash:
<object width="640" height="480">
<param name="movie" value="http://www.youtube.com/v/oDlsOyPKUTM?hl=es_ES&version=3"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/oDlsOyPKUTM?hl=es_ES&version=3" type="application/x-shockwave-flash"
width="640" height="480" allowscriptaccess="always" allowfullscreen="true">
</embed>
</object>
Vídeo responsivo por iframe
- Si no se especifica las dimensiones de un elemento tipo iframe, embed, object y canvas, en navegador lo dimensiona como 300x150px
- No se puede utilizar el truco de 100% width, el navegador pondría una altura de 150px que sería normalmente demasiado pequeña.
- Ver solución