Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje09-08-2009, 01:32 (UTC)    
Título del mensaje: [Código Javascript] Tiempo Web

Función:

Cronómetro que cuenta el tiempo que te pasas visitando la web.

Código fuente ( Haz Click en la ventana para Seleccionarlo Todo ):

Coloca el codigo entre las etiquetas [body] y [/body]

Código:

<form name="crono">
<input type="text" size="7" name="face" title="Cronómetro" >
<script language="JavaScript">

<!--
var timeCrono;
var hor = 0;
var min = 0;
var seg = 0;
var startTime = new Date();
var start = startTime.getSeconds();
StartCrono();
function StartCrono() {
if (seg + 1 > 59) {
min+= 1 ;
}
if (min > 59) {
min = 0;
hor+= 1;
}
var time = new Date();
if (time.getSeconds() >= start) {
seg = time.getSeconds() - start;
}
else {
seg = 60 + (time.getSeconds() - start);
}
timeCrono= (hor < 10) ? "0" + hor : hor;
timeCrono+= ((min < 10) ? ":0" : ":") + min;
timeCrono+= ((seg < 10) ? ":0" : ":") + seg;
document.crono.face.value = timeCrono;
setTimeout("StartCrono()",1000);
} //-->
</script>
</form>

______________
Entra A La Mejor Web : VipZon3x
No hagas Doble Post, edita el Post
¿Necesitas ayuda? Usa el buscador.
Administrador: Martinp
Moderadores: Javidj | Ladiskoteka | Enplenovuelomx | Tokarg | Alfasite | Luupa
Denuncias hacerlas a: Support-es@webme.com
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group