Changed JS

This commit is contained in:
James Dinh 2022-06-24 22:00:59 -10:00
parent fc39535e89
commit 38df9eeb39

View File

@ -15,15 +15,22 @@ var x = setInterval(function() {
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
// Display the result in the element with id="timer"
if (days != 0 && hours != 0) {
document.getElementById("timer").innerHTML = days + "d " + hours + "h";
// + minutes + "m " + seconds + "s ";
}
else if (hours != 0) {
document.getElementById("timer").innerHTML = hours + "h";
}
else {
document.getElementById("timer").innerHTML = minutes + "m";
}
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("timer").innerHTML = "NOW";
document.getElementById("timer").innerHTML = "LIVE";
}
}, 1000);