当前位置: 首页 > article >正文

HTML实战课堂之倒计时页面

一、目录:

一、目录:

二、代码说明:

1. **HTML部分**:

2. **CSS部分**:

3. **JavaScript部分**:

三、完整代码:

                         读前小提示:

要创建一个自定义背景的倒计时网页,这里使用HTML、CSS和JavaScript。

今天带小白入门一个简单的倒计时页面

以下是一个简单的示例
 

二、代码说明:

1. **HTML部分**:

包含一个`div`元素用于显示倒计时。

2. **CSS部分**:

设置了页面的背景图片以及倒计时容器的样式。

3. **JavaScript部分**:

实现了倒计时功能,每秒更新一次显示的时间。

                          代码提醒:

你需要将`your-background-image.jpg`替换为你自己的背景图片路径。如果需要更改倒计时结束时间,可以修改`new Date("Dec 31, 2023 23:59:59")`中的日期和时间。

三、完整代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>倒计时网页</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-image: url('your-background-image.jpg'); /* 替换为你的背景图片 */
            background-size: cover;
            background-position: center;
            font-family: Arial, sans-serif;
        }
        .countdown-container {
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        .countdown {
            font-size: 48px;
            margin: 20px 0;
        }
    </style>
</head>
<body>
    <div class="countdown-container">
        <div id="countdown" class="countdown"></div>
    </div>

    <script>
        <!-- 设置倒计时结束时间 -->
        const countDownDate = new Date("Dec 31, 2025 23:59:59").getTime();

        <!-- 更新倒计时每秒一次 -->
        const x = setInterval(function() {
            // 获取当前时间
            const now = new Date().getTime();
            
            // 计算剩余时间
            const distance = countDownDate - now;
            
            // 计算天、小时、分钟和秒数
            const days = Math.floor(distance / (1000 * 60 * 60 * 24));
            const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
            const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
            const seconds = Math.floor((distance % (1000 * 60)) / 1000);
            
            // 显示结果
            document.getElementById("countdown").innerHTML = days + "d " + hours + "h "
            + minutes + "m " + seconds + "s ";
            
            // 如果倒计时结束,显示一条消息
            if (distance < 0) {
                clearInterval(x);
                document.getElementById("countdown").innerHTML = "倒计时结束";
            }
        }, 1000);
    </script>
</body>
</html>


http://www.kler.cn/a/488488.html

相关文章:

  • 【json】
  • 2025新年源码免费送
  • GitLab创建用户,设置访问SSH Key
  • mysql中查询json的技巧
  • C语言冒泡排序教程简介
  • Redis 笔记(二)-Redis 安装及测试
  • 如何使用Scala和Selenium爬取知乎视频并保存到本地
  • 分布式ID—雪花算法
  • 【python翻译软件V1.0】
  • 计算机毕业设计hadoop+spark+hive新能源汽车推荐系统 汽车数据分析可视化大屏 新能源汽车推荐系统 汽车爬虫 汽车大数据 机器学习
  • istio-proxy oom问题排查步骤
  • JVM 触发类加载的条件有哪些?
  • 修改sshd默认配置,提升安全
  • Elasticsearch—索引库操作(增删查改)
  • word论文排版常见问题汇总
  • 【JAVA】时间戳和日期时间互转
  • 使用 Spring Boot 实现钉钉消息发送消息
  • computer与watch坚挺的区别与使用
  • Java 工厂模式、工厂方法模式、抽象工厂模式
  • IIS部署.NetCore/.Net8/.Net9项目(从装环境到配置Swagger)
  • 算法面试1
  • HTML5 渐变动画(Gradient Animation)
  • 给定差值的组合
  • day03-前端Web-Vue3.0基础
  • 面向对象分析与设计Python版 面向对象分析方法
  • 机器学习:一元线性回归