-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcronometro.html
executable file
·74 lines (58 loc) · 1.76 KB
/
cronometro.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Simple Cronometro en javascript</title>
<meta name="title" content="Cronometro en javascript">
<meta name="description" content="Cronometro en javascript">
<meta name="keywords" content="código,cronometro,javascript">
<script>
var inicio=0;
var timeout=0;
function empezarDetener(elemento) //como parametro resivo toda la etiqueta imput
{
if(timeout==0)
{
// empezar el cronometro
elemento.value="Detener";
// Obtenemos el valor actual
inicio=new Date().getTime();
// iniciamos el proceso
funcionando();
}else{
// detemer el cronometro
elemento.value="Empezar";
clearTimeout(timeout);
timeout=0;
}
}
function funcionando()
{
// obteneos la fecha actual
var actual = new Date().getTime();
// obtenemos la diferencia entre la fecha actual y la de inicio
var diff = new Date(actual-inicio);
console.log(diff);
// mostramos la diferencia entre la fecha actual y la inicial
var result=LeadingZero(diff.getUTCHours())+":"+LeadingZero(diff.getUTCMinutes())+":"+LeadingZero(diff.getUTCSeconds());
document.getElementById('crono').innerHTML = result;
// Indicamos que se ejecute esta función nuevamente dentro de 1 segundo
timeout=setTimeout("funcionando()",1000);
}
/* Funcion que pone un 0 delante de un valor si es necesario */
function LeadingZero(Time) {
return (Time < 10) ? "0" + Time : + Time;
}
</script>
<style>
.crono_wrapper {text-align:center;width:200px;}
</style>
</head>
<body>
<h1>Simple Cronometro en javascript</h1>
<div class="crono_wrapper">
<h2 id='crono'>00:00:00</h2>
<input type="button" value="Empezar" onclick="empezarDetener(this);">
</div>
</body>
</html>