×

vue开发小应用:指定日期之间的倒计时

作者:Terry2021.06.18来源:Web前端之家浏览:6310评论:0
关键词:js

分享个vue开发小应用:指定日期之间的倒计时,一起来看下吧。

先看下效果图:

123.jpg

此处使用moment.js日期处理类库 使用方法如下:

npm install moment 或者 yarn add moment

html

  1. <div class="time-down">
  2.   <div class="back">{{dayNum}}</div>
  3.   <div class="font-14 date"></div>
  4.   <div class="back">{{hourNum}}</div>
  5.   <div class="font-14 date"></div>
  6.   <div class="back">{{minuteNum}}</div>
  7.   <div class="font-14 date"></div>
  8.   <div class="back">{{secondNum}}</div>
  9.   <div class="font-14 date"></div>
  10. </div>

JS

  1. import moment from 'moment';
  2. export default {
  3.     name: 'TimeRangPage',
  4.     props: {
  5.       startTime: String,
  6.       endTime: String
  7.     },
  8.     data () {
  9.       return {
  10.         days: 0,
  11.         hours: 0,
  12.         minutes: 0,
  13.         seconds: 0,
  14.         timeSetInterval: null,
  15.         showTimeDown: false,
  16.         showOver: false
  17.       };
  18.     },
  19.     created () {
  20.       if (moment(new Date()).isBefore(this.startTime)) {
  21.         this.showTimeDown = true;
  22.         this.timeDown();
  23.       }
  24.       if (moment(new Date()).isAfter(this.endTime)) this.showOver = true;
  25.     },
  26.     methods: {
  27.       timeDown () {
  28.         this.timeSetInterval = setInterval(() => {
  29.           if (moment(this.startTime).isBefore(moment())) {
  30.             this.showTimeDown = false;
  31.             clearInterval(this.timeSetInterval);
  32.             location.reload();
  33.           }
  34.           let dur = moment.duration(moment(this.startTime) - moment(), 'ms');
  35.           this.days = dur.get('days');
  36.           this.hours = dur.get('hours');
  37.           this.minutes = dur.get('minutes');
  38.           this.seconds = dur.get('seconds');
  39.         }, 1000);
  40.       }
  41.     },
  42.     computed: {
  43.       dayNum () {
  44.         if (this.days < 10) return '0' + this.days;
  45.         return this.days;
  46.       },
  47.       hourNum () {
  48.         if (this.hours < 10) return '0' + this.hours;
  49.         return this.hours;
  50.       },
  51.       minuteNum () {
  52.         if (this.minutes < 10) return '0' + this.minutes;
  53.         return this.minutes;
  54.       },
  55.       secondNum () {
  56.         if (this.seconds < 10) return '0' + this.seconds;
  57.         return this.seconds;
  58.       }
  59.     }
  60.   };

您的支持是我们创作的动力!
温馨提示:本文作者系Terry ,经Web前端之家编辑修改或补充,转载请注明出处和本文链接:
https://jiangweishan.com/article/vuejs20210618.html

网友评论文明上网理性发言 已有0人参与

发表评论: