c205 countdown website | day 934

22 July 2024  

c205 countdown website | (just!) one year offset *

 

var countDownDate = new Date(“August 2, 2023 20:00:00”).getTime(); var x = setInterval(function() {
var now = new Date().getTime(); var distance = countDownDate – now; 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); document.getElementById(“countdown”).innerHTML = days + “d : ” + hours + “h : ” + minutes + “‘ : ” + seconds + “” “; if (distance < 0) {clearInterval(x);document.getElementById(“countdown”).innerHTML = “EXPIRED”; } }, 1000);

 
 


related posts :


 


 
 


 
☼ 2024 - Ioannis K. Erripis