-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
69 lines (57 loc) · 2.04 KB
/
index.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
const playPauseBtn = document.getElementById("play_pause")
const resetBtn = document.getElementById("reset")
const swap = document.getElementById("swapPP")
const time = document.getElementById("time")
const markBtn = document.getElementById("mark")
const writeList = document.getElementById("write_list")
let hours = 0, minutes = 0, seconds = 0;
let intervalId;
window.addEventListener('beforeunload', function (e) {
e.preventDefault();
e.returnValue = true;
});
const triggerTimer = () => {
seconds++
if (seconds == 60) {
seconds = 0;
minutes++
if (minutes == 60) {
minutes = 0;
hours++
if (hours == 24) {
hours = 0
}
}
}
time.innerText = `${hours < 10 ? "0" + `${hours}` : `${hours}`}:${minutes < 10 ? "0" + `${minutes}` : `${minutes}`}:${seconds < 10 ? "0" + `${seconds}` : `${seconds}`}`
}
playPauseBtn.addEventListener("click", () => {
swap.classList.contains('bi-play-fill') ? swap.classList.replace('bi-play-fill', 'bi-pause') : swap.classList.replace('bi-pause', 'bi-play-fill');
if (!intervalId) {
intervalId = setInterval(triggerTimer, 1000)
} else {
clearInterval(intervalId)
intervalId = null
}
})
markBtn.addEventListener("click", () => {
writeList.style.height = "60vh";
const heading = document.createElement("h2")
heading.textContent = `${" " + hours + " "}:${" " + minutes + " "}:${" " + seconds + " "}`
writeList.appendChild(heading)
})
resetBtn.addEventListener('click', () => {
hours = 0;
minutes = 0;
seconds = 0;
writeList.style.height = "auto";
clearInterval(intervalId);
intervalId = null;
if (swap.classList.contains('bi-pause')) {
swap.classList.replace('bi-pause', 'bi-play-fill');
}
time.innerText = `${hours < 10 ? "0" + `${hours}` : `${hours}`}:${minutes < 10 ? "0" + `${minutes}` : `${minutes}`}:${seconds < 10 ? "0" + `${seconds}` : `${seconds}`}`
if (writeList.firstChild) {
writeList.innerHTML = ""
}
})