js 现在的时间距离本月月底的倒计时(html)

现在的时间距离本月月底的倒计时

html 复制代码
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>现在的时间距离本月月底的倒计时</title>

  <style>
    body {
      padding: 0;
      margin: 0;
    }

    .index-time {
      color: #333333;
      text-align: left;
      font-size: 28px;
      line-height: 80px;
      width: 550px;
      margin: 0 auto;
    }

    .index-date {
      color: #ff5722;
    }
  </style>
</head>

<body>
  <div class="index-time">
    <div class="index-date" id="date"></div>
    <div class="index-date" id="reachDate"></div>
    <div class="index-time-son">
      <div class="time-son-m" id="timer">
        距离指定日期:
        <span class="time-hei time-hei1">00</span> 天
        <span class="time-hei time-hei2">00</span> 小时
        <span class="time-hei time-hei3">00</span> 分
        <span class="time-hei time-hei4">00</span> 秒
      </div>
    </div>
  </div>

  <script>
    function getDays() {
      // 1.获取本月的天数
      var date = new Date();
      var year = date.getFullYear();
      var mouth = date.getMonth() + 1;
      var days = date.getDate();

      // 2.本月的天数 - 用本月已经过去的时间 (天数 小时 分钟 秒数)
      var myDate = date.getDate();
      var hours = date.getHours();
      var min = date.getMinutes();
      var second = date.getSeconds();
      var Milliseconds = date.getMilliseconds();

      // 当前日期时间
      document.getElementById('date').innerHTML = '当前时间:' + year + '-' + mouth + '-' + days + ' ' + hours + ':' + min + ':' + second;

      if (mouth == 2) {
        days = year % 4 == 0 ? 29 : 28;
      } else if (mouth == 1 || mouth == 3 || mouth == 5 || mouth == 7 || mouth == 8 || mouth == 10 || mouth == 12) {
        days = 31;
      } else {
        days = 30;
      }

      // 到达日期
      document.getElementById('reachDate').innerHTML = '指定时间:' + year + '-' + mouth + '-' + days;

      // 天数相减
      var differenceday = days - myDate - 1;
      differenceday = differenceday > 9 ? differenceday : "0" + differenceday;

      // 小时相减
      var differencehours = 1 * 23 - hours;
      differencehours = differencehours > 9 ? differencehours : "0" + differencehours;

      // 分钟相减
      var differencemin = 1 * 59 - min;
      differencemin = differencemin > 9 ? differencemin : "0" + differencemin;

      // 秒数相减
      var differencesecond = 1 * 59 - second;
      differencesecond = differencesecond > 9 ? differencesecond : "0" + differencesecond;

      // 渲染到页面上
      var timer = document.getElementById('timer');
      var span = timer.getElementsByTagName('span');
      span[0].innerHTML = differenceday;
      span[1].innerHTML = differencehours;
      span[2].innerHTML = differencemin;
      span[3].innerHTML = differencesecond;
    };
    //倒计时
    var timer = window.setInterval(function () {
      getDays();
    }, 1000);
  </script>
</body>

</html>
相关推荐
IT_陈寒8 小时前
Redis性能翻倍的5个冷门技巧,90%开发者都不知道第3个!
前端·人工智能·后端
T***u3338 小时前
前端框架在性能优化中的实践
javascript·vue.js·前端框架
jingling5559 小时前
vue | 在 Vue 3 项目中集成高德地图(AMap)
前端·javascript·vue.js
油丶酸萝卜别吃9 小时前
Vue3 中如何在 setup 语法糖下,通过 Layer 弹窗组件弹出自定义 Vue 组件?
前端·vue.js·arcgis
J***Q29216 小时前
Vue数据可视化
前端·vue.js·信息可视化
ttod_qzstudio17 小时前
深入理解 Vue 3 的 h 函数:构建动态 UI 的利器
前端·vue.js
芳草萋萋鹦鹉洲哦18 小时前
【elemen/js】阻塞UI线程导致的开关卡顿如何优化
开发语言·javascript·ui
_大龄18 小时前
前端解析excel
前端·excel
1***s63218 小时前
Vue图像处理开发
javascript·vue.js·ecmascript
槁***耿18 小时前
JavaScript在Node.js中的事件发射器
开发语言·javascript·node.js