2021欧洲杯倒计时
欧洲杯倒计时
欧洲杯是足球界最受关注的赛事之一,吸引着数以亿计的球迷关注。倒计时直到比赛开始会让球迷们兴奋不已。目前距离欧洲杯开始的时间如下:
倒计时:
// Set the date we're counting down to
var countDownDate = new Date("20240601T00:00:00Z").getTime();
// Update the countdown every 1 second
var x = setInterval(function() {
// Get the current date and time
var now = new Date().getTime();
// Calculate the remaining time
var distance = countDownDate now;
// Calculate days, hours, minutes, and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
// Display the result
document.getElementById("countdown").innerHTML = days " 天";
// If the countdown is over, display a message
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "已开始";
}
}, 1000);