-
Notifications
You must be signed in to change notification settings - Fork 0
/
conometro.html
65 lines (55 loc) · 1.39 KB
/
conometro.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
<script language="JavaScript">
<!-- Oculto para browser antiguos
// Recursos WebMaster
// http://www.yomaster.com
var hora = "0"
var minuto = "00"
var segundo = "0"
var horag = "0"
var minutog = "0"
var segundog = "0"
function tiempo(){
horag = parseInt(horag) + parseInt(hora)
minutog = parseInt(minutog) + parseInt(minuto)
segundog = parseInt(segundog) + (parseInt(segundo) - parseInt(1) )
console.log(segundog)
document.tablatiempo.ttotal.value=horag + ":" + minutog + ":" + segundog
document.cronometro.gratisss.value = "0" + ":" + "00" + ":" + "00"
hora = "0"
minuto = "00"
segundo = "0"
}
function cronometro(){
if ((minuto < 10) && (minuto != "00")){
bajamin = "0" + minuto
}
else{
bajamin = minuto
}
bajasec = (segundo < 10) ? segundo = "0" + segundo : segundo
document.cronometro.gratisss.value = hora + ":" + bajamin + ":" + bajasec
if (segundo < 59){
segundo++
}
else{
segundo = "0"
minuto++
if (minuto > 59){
minuto = "00"
hora++
}
}
window.setTimeout("cronometro()",1000)
}
// -->
</SCRIPT>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#FF0000" VLINK="#000080" ALINK="#000080" onLoad="cronometro()">
<center></center>
<form name="cronometro">
<b>Cronometro: </b><input type=text value="" name="gratisss" size=8>
</form><button onclick="tiempo()">guardar</button>
<br>
<h3>tiempo acumulado</h3>
<form name="tablatiempo">
<b>Total:</b> <input type=text value="" name="ttotal" size=8>
</form>