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 !!
|
// Countdown Done !!
|
||||||
// const body = document.body;
|
const body = document.body;
|
||||||
// const endTime = new Date('9 16 2022 23:59:59');
|
const endTime = new Date('2 21 2023 23:59:59');
|
||||||
// const daysEl = document.getElementById('days');
|
const daysEl = document.getElementById('days');
|
||||||
// const hoursEl = document.getElementById('hours');
|
const hoursEl = document.getElementById('hours');
|
||||||
// const minutesEl = document.getElementById('minutes');
|
const minutesEl = document.getElementById('minutes');
|
||||||
// const secondsEl = document.getElementById('seconds');
|
const secondsEl = document.getElementById('seconds');
|
||||||
|
|
||||||
// setInterval(updateCountdown, 1000)
|
setInterval(updateCountdown, 1000)
|
||||||
|
|
||||||
// function updateCountdown() {
|
function updateCountdown() {
|
||||||
// const startTime = new Date();
|
const startTime = new Date();
|
||||||
// const diff = endTime - startTime;
|
const diff = endTime - startTime;
|
||||||
// const days = Math.floor(diff / 1000 / 60 / 60 / 24);
|
const days = Math.floor(diff / 1000 / 60 / 60 / 24);
|
||||||
// const hours = 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 minutes = Math.floor(diff / 1000 / 60) % 60;
|
||||||
// const seconds = Math.floor(diff / 1000) % 60;
|
const seconds = Math.floor(diff / 1000) % 60;
|
||||||
// daysEl.innerHTML = days;
|
daysEl.innerHTML = days;
|
||||||
// hoursEl.innerHTML = hours < 10 ? '0'+hours : hours;
|
hoursEl.innerHTML = hours < 10 ? '0'+hours : hours;
|
||||||
// minutesEl.innerHTML = minutes < 10 ? '0'+minutes : minutes;
|
minutesEl.innerHTML = minutes < 10 ? '0'+minutes : minutes;
|
||||||
// secondsEl.innerHTML = seconds < 10 ? '0'+seconds : seconds;
|
secondsEl.innerHTML = seconds < 10 ? '0'+seconds : seconds;
|
||||||
// };
|
};
|
||||||
|
|
||||||
// Time & Date (Footer)
|
// Time & Date (Footer)
|
||||||
setInterval(function(){
|
setInterval(function(){
|
||||||
|
Loading…
Reference in New Issue
Block a user