生成一个HTML+js代码实现距离2024年双11倒计时蓝色盒子,精确到时分秒
时间: 2024-11-12 07:31:46 浏览: 32
元旦倒计时代码+(HTML+css+JavaScript + canvas)写的一个 2023 年跨年倒计时代码
当然可以,这是一个简单的HTML和JavaScript代码示例,用于实现一个显示距离2024年双十一倒计时的蓝色计时盒:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.countdown-box {
width: 200px;
height: 100px;
background-color: blue;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id="countdown" class="countdown-box"></div>
<script>
function updateCountdown() {
const targetDate = new Date("Nov 11, 2024 00:00:00"); // 双十一日期和时间
const now = new Date();
const distanceInMilliseconds = targetDate - now;
const days = Math.floor(distanceInMilliseconds / (1000 * 60 * 60 * 24));
const hours = Math.floor((distanceInMilliseconds % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distanceInMilliseconds % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distanceInMilliseconds % (1000 * 60)) / 1000);
document.getElementById("countdown").textContent = `距离2024年双11还有 ${days} 天 ${hours} 小时 ${minutes} 分钟 ${seconds} 秒`;
}
// 每秒更新一次倒计时
setInterval(updateCountdown, 1000);
</script>
</body>
</html>
```
把这个代码保存为`.html`文件,然后在浏览器中打开,就能看到一个动态的、蓝色背景的倒计时盒子了。
阅读全文