-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
27 lines (21 loc) · 931 Bytes
/
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
const days = document.getElementById("days");
const hours = document.getElementById("hours");
const minutes = document.getElementById("minutes");
const seconds = document.getElementById("seconds");
const currentYear = new Date().getFullYear();
const newYearTime = new Date(`January 1 ${currentYear + 1} 00:00:00`);
// Update the countdown
const countdown = () => {
const currentTime = new Date();
const diff = newYearTime - currentTime;
const d = Math.floor(diff / 1000 / 60 / 60 / 24);
const h = Math.floor(diff / 1000 / 60 / 60) % 24;
const m = Math.floor(diff / 1000 / 60) % 60;
const s = Math.floor(diff / 1000) % 60;
days.innerHTML = d < 10 ? '0' +d : d;;
hours.innerHTML = h < 10 ? '0' +h : h;
minutes.innerHTML = m < 10 ? '0' +m : m;
seconds.innerHTML = s < 10 ? '0' +s : s;
}
setInterval(countdown, 1000);
document.getElementById("currentYearCopy").innerHTML = currentYear;