Update main.js
This commit is contained in:
parent
15a8cd1fc7
commit
0215cbc844
38
js/main.js
38
js/main.js
@ -7,27 +7,27 @@ function menuToggle(){
|
||||
};
|
||||
|
||||
// Countdown Done !!
|
||||
// const body = document.body;
|
||||
// const endTime = new Date('9 16 2022 23:59:59');
|
||||
// const daysEl = document.getElementById('days');
|
||||
// const hoursEl = document.getElementById('hours');
|
||||
// const minutesEl = document.getElementById('minutes');
|
||||
// const secondsEl = document.getElementById('seconds');
|
||||
const body = document.body;
|
||||
const endTime = new Date('2 21 2023 23:59:59');
|
||||
const daysEl = document.getElementById('days');
|
||||
const hoursEl = document.getElementById('hours');
|
||||
const minutesEl = document.getElementById('minutes');
|
||||
const secondsEl = document.getElementById('seconds');
|
||||
|
||||
// setInterval(updateCountdown, 1000)
|
||||
setInterval(updateCountdown, 1000)
|
||||
|
||||
// function updateCountdown() {
|
||||
// const startTime = new Date();
|
||||
// const diff = endTime - startTime;
|
||||
// const days = Math.floor(diff / 1000 / 60 / 60 / 24);
|
||||
// const hours = Math.floor(diff / 1000 / 60 / 60) % 24;
|
||||
// const minutes = Math.floor(diff / 1000 / 60) % 60;
|
||||
// const seconds = Math.floor(diff / 1000) % 60;
|
||||
// daysEl.innerHTML = days;
|
||||
// hoursEl.innerHTML = hours < 10 ? '0'+hours : hours;
|
||||
// minutesEl.innerHTML = minutes < 10 ? '0'+minutes : minutes;
|
||||
// secondsEl.innerHTML = seconds < 10 ? '0'+seconds : seconds;
|
||||
// };
|
||||
function updateCountdown() {
|
||||
const startTime = new Date();
|
||||
const diff = endTime - startTime;
|
||||
const days = Math.floor(diff / 1000 / 60 / 60 / 24);
|
||||
const hours = Math.floor(diff / 1000 / 60 / 60) % 24;
|
||||
const minutes = Math.floor(diff / 1000 / 60) % 60;
|
||||
const seconds = Math.floor(diff / 1000) % 60;
|
||||
daysEl.innerHTML = days;
|
||||
hoursEl.innerHTML = hours < 10 ? '0'+hours : hours;
|
||||
minutesEl.innerHTML = minutes < 10 ? '0'+minutes : minutes;
|
||||
secondsEl.innerHTML = seconds < 10 ? '0'+seconds : seconds;
|
||||
};
|
||||
|
||||
// Time & Date (Footer)
|
||||
setInterval(function(){
|
||||
|
Loading…
Reference in New Issue
Block a user