-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcountdown.js
More file actions
executable file
·64 lines (55 loc) · 1.61 KB
/
countdown.js
File metadata and controls
executable file
·64 lines (55 loc) · 1.61 KB
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
let countdown;
const timerDisplay = document.querySelector('.display__time-left');
const endTime = document.querySelector('.display__end-time');
const buttons = document.querySelectorAll('[data-time]');
function timer(seconds) {
clearInterval(countdown);
const now = Date.now();
const then = now + seconds * 1000;
displayTimeLeft(seconds);
displayEndTime(then);
countdown = setInterval(() => {
const secondsLeft = Math.round((then - Date.now()) / 1000);
if (secondsLeft < 0) {
clearInterval(countdown);
return;
}
displayTimeLeft(secondsLeft);
}, 1000);
}
function pad(number) {
const padNumber = `${number < 10 ? '0' : ''}${number}`;
return padNumber;
}
function displayTimeLeft(seconds) {
const minutes = Math.floor(seconds / 60);
const displaySeconds = pad(seconds % 60);
const display = `${minutes}:${displaySeconds}`;
document.title = display;
timerDisplay.textContent = display;
}
function displayEndTime(timestamp) {
const end = new Date(timestamp);
const hour = end.getHours();
const minutes = end.getMinutes();
endTime.textContent = `Back At ${hour}:${pad(minutes)}`;
}
function clearTimer() {
endTime.textContent = "";
timerDisplay.textContent = "";
document.title = "Timer";
}
function startTimer() {
let seconds = this.dataset.time;
console.log(seconds);
timer(seconds);
if (seconds < 1) clearTimer();
}
buttons.forEach(button => button.addEventListener('click', startTimer));
document.customForm.addEventListener('submit', function(e) {
e.preventDefault();
const mins = this.minutes.value;
console.log(mins);
timer(mins * 60);
this.reset();
})