Show clock immediately

Previous code had 1-second delay.
This commit is contained in:
Remi Rampin 2021-01-25 13:03:59 -05:00
parent 10ed0eef1c
commit 4f05f739e0
2 changed files with 12 additions and 6 deletions

View File

@ -49,8 +49,7 @@
// Set the date we're counting down to
var countDownDate = new Date("Jan 30, 2021 14:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
function updateClock() {
// Get today's date and time
var now = new Date().getTime();
@ -86,6 +85,10 @@
clearInterval(x);
document.getElementById("clock").innerHTML = "Le mariage commence maintenant !";
}
}, 1000);
}
// Update the count down every 1 second
updateClock();
setInterval(updateClock, 1000);
</script>
</html>

View File

@ -48,8 +48,7 @@
// Set the date we're counting down to
var countDownDate = new Date("Jan 30, 2021 14:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
function updateClock() {
// Get today's date and time
var now = new Date().getTime();
@ -73,6 +72,10 @@
clearInterval(x);
document.getElementById("clock").innerHTML = "The wedding will start ASAP!";
}
}, 1000);
}
// Update the count down every 1 second
updateClock();
setInterval(updateClock, 1000);
</script>
</html>