- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>Mi webcam</title>
- </head>
- <body>
- <img name="oImg" id="oImg" src="http://camaras.dominio.com/Camaras/oImg.jpg" width="800" height="600" border="0"/>
- <script language="JavaScript" type="text/javascript" >
- periodo = 1; // segundos entre recargas
- imgoImg=document.getElementById("oImg");
- imgsrc = imgoImg.src;
- buffer = new Image();
- buffer.onload = imageChange;
- buffer.onerror = imageError;
- setTimeout("imageReload()", periodo * 1000);
- function imageReload() {
- buffer.src = imgsrc + "?d=" + new Date().getTime();
- setTimeout("imageReload()", periodo * 1000);
- }
- function imageChange() {
- imgoImg.src = buffer.src;
- }
- function imageError() {
- setTimeout("imageReload()", 1000);
- }
- </script>
- </body>
- </html>
Aquí voy colgando cosas que me resultaron de utilidad. No contestaré a comentarios, no es un blog para dar soporte a nada ni para responder dudas. Simplemente comparto lo que me valió, por si a alguien más le vale. Pero no respondo de los daños que su uso pueda ocasionar.
22 de febrero de 2013
JOOMLA: refrescar o actualizar una imagen automáticamente
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario