-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
74 lines (70 loc) · 1.96 KB
/
script.js
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
// Ativação
window.onload = function () {
// Variáveis
// Da formula
var seconds = 00;
var miles = 00;
// De apresentação
var appendSeconds = document.getElementById("seconds");
var appendMiles = document.getElementById("miles");
var register = document.getElementById("log");
// Dos botões
var start_btn = document.getElementById("start");
var stop_btn = document.getElementById("stop");
var reset_btn = document.getElementById("reset");
var stamp_btn = document.getElementById("stamp");
// Do método
var interval;
// Ações
// Inicia a Contagem
start_btn.onclick = function () {
interval = setInterval(myTimer, 10);
};
// Pausa
stop_btn.onclick = function () {
clearInterval(interval);
};
// Reseta o tempo
reset_btn.onclick = function () {
clearInterval(interval);
miles = "00";
seconds = "00";
appendMiles.innerHTML = miles;
appendSeconds.innerHTML = seconds;
register.value = "";
};
// Marca o tempo
stamp_btn.onclick = function () {
var val = appendSeconds.innerHTML + ":" + appendMiles.innerHTML + "\r\n";
register.value += val;
// Aqui vc ñ esta reatribuindo mas reatribuindo e acrescentando.
console.log(val);
};
// Saber que textarea só aceita string e que eu estava tentando colocar HtmlElements nela. Por isso quebra de linha nao funcionava. E tive que adicionar outro valor a variavel.
// A formula
function myTimer() {
// Milesegundos
// acrescenta valor
miles++;
// add o zero a miles
if (miles <= 9) {
appendMiles.innerHTML = "0" + miles;
}
// reinicia no nove
if (miles > 9) {
appendMiles.innerHTML = miles;
}
// Segundos
// acrescenta, add e zera miles
if (miles > 59) {
seconds++;
appendSeconds.innerHTML = "0" + seconds;
miles = 0;
appendMiles.innerHTML = "0" + 0;
}
// reinicia no nove
if (seconds > 9) {
appendSeconds.innerHTML = seconds;
}
}
};