> 文章列表 > 下课倒计时案例

下课倒计时案例

下课倒计时案例

分析:

  1. 用将来时间减去现在时间就是剩余的时间
  2. 核心:使用将来的时间戳减去现在的时间戳
  3. 把剩余的时间转换为 天 时 分 秒

注意:

  1. 通过时间戳得到是毫秒,需要转换为秒在计算

  2. 转换公式:
    d=parselnt(总秒数/ 60/60 /24); // 计算天数h=parselnt(总秒数/60/60 %24) // 计算小时m=parselnt(总秒数 /60 %60); // 计算分数
    s=parselnt(总秒数%60);// 计算当前秒数

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>Document</title><style>.countdown {width: 240px;height: 305px;text-align: center;line-height: 1;color: #fff;background-color: brown;/* background-size: 240px; *//* float: left; */overflow: hidden;}.countdown .next {font-size: 16px;margin: 25px 0 14px;}.countdown .title {font-size: 33px;}.countdown .tips {margin-top: 80px;font-size: 23px;}.countdown small {font-size: 17px;}.countdown .clock {width: 142px;margin: 18px auto 0;overflow: hidden;}.countdown .clock span,.countdown .clock i {display: block;text-align: center;line-height: 34px;font-size: 23px;float: left;}.countdown .clock span {width: 34px;height: 34px;border-radius: 2px;background-color: #303430;}.countdown .clock i {width: 20px;font-style: normal;}</style>
</head><body><div class="countdown"><p class="next">今天是2023年4月15日</p><p class="title">下班倒计时</p><p class="clock"><span id="hour">00</span><i>:</i><span id="minutes">25</span><i>:</i><span id="scond">20</span></p><p class="tips">18:00:00下课</p></div><script>// 随机颜色函数// 1. 自定义一个随机颜色函数function getRandomColor(flag = true) {if (flag) {// 3. 如果是true 则返回 #fffffflet str = '#'let arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f']// 利用for循环随机抽6次 累加到 str里面for (let i = 1; i <= 6; i++) {// 每次要随机从数组里面抽取一个  // random 是数组的索引号 是随机的let random = Math.floor(Math.random() * arr.length)// str = str + arr[random]str += arr[random]}return str} else {// 4. 否则是 false 则返回 rgb(255,255,255)let r = Math.floor(Math.random() * 256)  // 55let g = Math.floor(Math.random() * 256)  // 89let b = Math.floor(Math.random() * 256)  // 255return `rgb(${r},${g},${b})`}}// 页面刷新随机得到颜色const countdown = document.querySelector('.countdown')countdown.style.backgroundColor = getRandomColor()// 函数封装 getCountTimefunction getCountTime(){// 1.得到当前时间戳const now=+new Date()// 2.得到将来的时间戳const last=+new Date('2023-4-15 18:00:00')// 3.得到剩余的时间戳 count 转换为秒数const count=(last-now) /1000 // 4.转换为时分秒let h=parseInt(count/60/60 %24) // 计算小时h = h < 10 ? '0' + h : hlet m=parseInt(count/60 %60)   // 计算分数m = m < 10 ? '0' + m : mlet s=parseInt(count%60)    // 计算当前秒数s = s < 10 ? '0' + s : s// 5.把时分秒写到对应的盒子里面const hour = document.querySelector('#hour')const minutes = document.querySelector('#minutes')const scond = document.querySelector('#scond')hour.innerHTML = hminutes.innerHTML = mscond.innerHTML = s}// 先调用一次getCountTime()// 开启定时器setInterval(getCountTime,1000)</script>
</body></html>