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

vue2和vue3两种倒计时CountDown实现

一、vue2

1.CountDown.vue 

<template>
  <span style="color: red;font-weight: 500;font-size: 16px;" :endTime="endTime">
  <slot>
  {{ content }}
  </slot>
  </span>
</template>
<script>
export default {
  data() {
    return {
      content: '',
      timer: null,
    }
  },
  props: {
    endTime: {
      type: String,
      default: ''
    },
  },
  watch: {
    endTime() {
      this.countdown(this.endTime)
    }
  },
  beforeUnmount() {
    if (this.timer) {
      clearInterval(this.timer);
    }
  },
  mounted() {
    this.countdown(this.endTime)
  },
  methods: {
    countdown(timestamp) {
      let self = this;
      if (self.timer) {
        clearInterval(self.timer);
      }
      this.timer = setInterval(function () {
        let nowTime = new Date();
        if (!timestamp || timestamp.length == 0) {
          return
        }
        let endTime = new Date(timestamp * 1000);
        let t = endTime.getTime() - nowTime.getTime();
        if (t > 0) {
          let day = Math.floor(t / 86400000);
          let hour = Math.floor((t / 3600000) % 24);
          let min = Math.floor((t / 60000) % 60);
          let sec = Math.floor((t / 1000) % 60);
          let format = '';
          if (day > 0) {
            format = `${day}天${hour}小时${min}分${sec}秒`;
          }
          if (day <= 0 && hour > 0) {
            format = `${hour}小时${min}分${sec}秒`;
          }
          if (day <= 0 && hour <= 0) {
            format = `${min}分${sec}秒`;
          }
          self.content = format;
        } else {
          clearInterval(self.timer);
          self.$emit('timeout')
        }
      }, 1000);
    }
  }
}
</script>

2.效果

二、vue3

1.安装

npm install vue3-countdown --save

2.使用

<template>
 <countdown :time="remainTime" format="HH:mm:ss">
      <template #="{ resolved }">
            <span class="countdown-item">{{ resolved.HH }}</span><span
                      class="timeColon">:</span>
            <span class="countdown-item">{{ resolved.mm }}</span><span
                      class="timeColon">:</span>
            <span class="countdown-item">{{ resolved.ss }}</span>
      </template>
 </countdown>
</template>
<script lang="ts" setup>
import Countdown from 'vue3-countdown'

const remainTime = ref<number>();
onMounted(()=>{
    let nowTime = new Date();
    let endTime = new Date(limitTime);// limitTime为传入的时间
    remainTime.value = endTime.getTime() - nowTime.getTime();
})
</script>

<style scoped>
.countdown-item {
  padding: 3px 6px;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  background-color: #c00;
}

.timeColon {
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  margin: 0 5px;
}
</style>

3.效果


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

相关文章:

  • 华为欧拉操作系统认证
  • Fortran mpi在Linux的安装
  • 电子应用设计方案-31:智能AI音响系统方案设计
  • org.apache.commons.lang3包下的StringUtils工具类的使用
  • Zabbix 模板翻译自动化教程
  • 论文笔记(五十七)Diffusion Model Predictive Control
  • 设计模式之单例
  • Leetcode - 周赛425
  • EditInPlace就地编辑:Dom vs Form
  • 缓存与缓冲
  • 基于PHP的音乐网站的设计与实现
  • 每日速记10道java面试题03
  • 写一份客服网络安全意识培训PPT
  • 如何分段存储Redis键值对
  • 智慧银行反欺诈大数据管控平台方案(二)
  • windows C#-为类或结构定义值相等性(上)
  • 网络原理-初识
  • 解密开源大模型如何实现本地化部署并基于本地的知识库进行应用
  • Java基础面试题11:简述System.gc()和Runtime.gc()的作用?
  • 一些面试问题的深入与思考
  • 国际网络安全趋势
  • git push使用
  • 探索Linux的目录结构:深入理解文件系统的组织
  • mongodb配置ssl连接
  • 详解Qt PDF 之 QPdfDocument与 QPdfView 打开与显示pdf
  • 如何在 Debian 7 上设置 Apache 虚拟主机