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

vue 实现一个持续时间定时器组件

vue 实现一个定时器组件

    • 效果图
    • 子组件
    • 父组件

效果图

在这里插入图片描述

子组件

新建一个timer.vue文件

<template>
  <span :class="{red: string >= 600}">{{ string | formatDurationS }}</span>
</template>
<script>

export default {
  name: 'timer',
  props: {
    startTimer: {
      type: [String, Number],
      default: 0
    },
    currentTimer: {
      type: [String, Number],
      default: 0
    }
  },
  data() {
    return {
      string: '--:--:--', // '00:00:00',
      step: 0,
      intervalName: ''
    }
  },
  watch: {
    currentTimer: {
      handler: function(nev, oldv) {
        if (this.intervalName) {
          clearInterval(this.intervalName)
        }
        this.step = this.startTimer
        let _str = Math.round((this.currentTimer - this.startTimer) / 1000)
        this.string = _str < 0 ? 0 : _str
        this.intervalName = setInterval(() => {
          this.string++
        }, 1000)
      },
      immediate: true
    }
  },
  beforeDestroy() {
    clearInterval(this.intervalName)
    this.intervalName = null
  }
}

</script>
<style scoped lang="less">
.red {
  color: #F03E3E;
}
</style>

父组件

导入子组件并注册

<TIMER ref="timerFun" :currentTimer="timeStamp" :startTimer="item.actionTime"></TIMER>


import TIMER from '@/components/timer.vue'

timeStamp: Date.now(),

components: {
  TIMER
}
  • startTimer: 开始计时的时间戳
  • currentTimer: 当前本地时间时间戳
  • 两者的差值就是起始的持续时间

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

相关文章:

  • Ascend C算子性能优化实用技巧05——API使用优化
  • 逆向攻防世界CTF系列41-EASYHOOK
  • C# 面向对象
  • 自动化运维-检测Linux服务器CPU、内存、负载、IO读写、机房带宽和服务器类型等信息脚本
  • MyBatis-Plus中使用JSON 类型字段
  • Ajax的相关内容
  • uniapp中配置开发环境和生产环境
  • 深入解析 Spring 事务机制
  • ChatGPT论文指南|ChatGPT论文写作过程中6个润色与查重提示词
  • 机器学习--K-近邻算法常见的几种距离算法详解
  • 【算法题】96. 不同的二叉搜索树
  • Fink CDC数据同步(二)MySQL数据同步
  • Debian系统中挂载一个数据盘
  • 单片机向PC发送数据
  • C++之多线程(multi-thread)
  • Springboot项目报文加密(AES、RSA、Filter动态加密)
  • MySQL视图和索引
  • 【Lazy ORM】insert 使用
  • [大厂实践] Netflix容器平台内核panic可观察性实践
  • Qt 常用算法及正则表达式
  • Web课程学习笔记--JavaScript的性能优化-加载和执行
  • 【动态规划】【前缀和】【C++算法】LCP 57. 打地鼠
  • HTML元素的操作
  • 全套军事和民用监听系统
  • 【NLP冲吖~】二、隐马尔可夫模型(Hidden Markov model, HMM)
  • chagpt的原理详解