Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/08/2012, 16:35
Avatar de hackjose
hackjose
 
Fecha de Ingreso: abril-2010
Ubicación: Edo Mexico
Mensajes: 1.178
Antigüedad: 14 años, 9 meses
Puntos: 131
Respuesta: Screensaver dentro de la web

Este codigo tal vez te ayude.
No lo probe por que no tengo videos

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="es" dir="ltr">
  3. function video()
  4. {
  5. setTimeout(function(){document.getElementById("video").autoplay = true;},15000);
  6. }
  7. </head>
  8. <body onload="video();">
  9.  
  10. <video width="400" height="300" id="video">
  11.  
  12.  
  13. </body>
  14. </html>

saludos