我的编程空间,编程开发者的网络收藏夹
学习永远不晚

如何利用momentJs做一个倒计时组件

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

如何利用momentJs做一个倒计时组件

今天就跟大家聊聊有关如何利用momentJs做一个倒计时组件,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

如何利用momentJs做一个倒计时组件vue和moment做的一个倒计时

展示样式:

如何利用momentJs做一个倒计时组件

<template>    <div class="table-right flex-a-center">        <div class="time-text">            <span class="timeTextSpan" v-for="item,index of h" >{{item}}</span>            <span class="timeTextSpan1" >: </span>            <span class="timeTextSpan" v-for="item,index of m" >{{item}}</span>            <span class="timeTextSpan1" >: </span>            <span class="timeTextSpan" v-for="item,index of s" >{{item}}</span>        </div>    </div></template>
<script>import moment from 'moment'export default {  props: {    endTime: { }, //接收得最后时间 2021-12-17 16:29:20  },  data() {    //这里存放数据    return {      h:'00',      m:'00',      s:'00',      timer:null    };  },  watch: {    endTime: {      handler(e) {        if (e) {          let self = this          clearInterval(this.timer)          this.timer = setInterval(function(){self.init()},1000)        }      },      deep: true,      immediate: true    }  },  mounted() {    let self = this    self.init()    clearInterval(this.timer)    this.timer = setInterval(function(){self.init()},1000)  },  //方法集合  methods: {    init(){        let time =moment(this.endTime).diff(moment())        if(time <= 0){          clearInterval(this.timer)          this.onOver()          return        }        let t = time / 1000;        let d = Math.floor(t / (24 * 3600));  //剩余天数,如果需要可以自行补上        let h = Math.floor((t - 24 * 3600 * d) / 3600) + d*24;  //不需要天数,把天数转换成小时        let _h = Math.floor((t - 24 * 3600 * d) / 3600)  //保留天数后得小时        let m = Math.floor((t - 24 * 3600 * d - _h * 3600) / 60);        let s = Math.floor((t - 24 * 3600 * d - _h * 3600 - m * 60));               this.h = String(h).length == 1? '0'+String(h):String(h)        this.m = String(m).length == 1? '0'+String(m):String(m)        this.s = String(s).length == 1? '0'+String(s):String(s)    },    onOver() {      this.$emit('over') //倒计时结束得回调    }   },  beforeDestroy(){    this.timer = null    clearInterval(this.timer)  }}</script><style lang='less' scoped>@import url("@/assets/css/supplier.less");   .table-right {    font-size: 12px;    color: #757e8a;    .timeTextSpan{      display: inline-block;      width: 14px;      height: 22px;      text-align: center;      background: #F1F0F0;      border-radius: 2px;      margin-right: 2px;      font-size: 16px;      color: #ff8a2b;      font-weight: bold;    }    .timeTextSpan1{      display: inline-block;      width: 14px;      text-align: center;      vertical-align: bottom;      color:#202D40;      font-size: 16px;      font-weight: bold;    }       .time-text {      margin-left: 10px;    }  }</style>

看完上述内容,你们对如何利用momentJs做一个倒计时组件有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

如何利用momentJs做一个倒计时组件

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

如何利用momentJs做一个倒计时组件

今天就跟大家聊聊有关如何利用momentJs做一个倒计时组件,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。vue和moment做的一个倒计时展示样式: