Vue3倒计时(Countdown)

简介: 这篇文章介绍了如何在Vue 3中创建一个可自定义的倒计时组件(Countdown),允许设置标题、前缀、后缀、格式和样式,并提供了组件的实现代码和使用示例。

可自定义设置以下属性:

  • 倒计时标题(title),类型 string | slot,默认 undefined

  • 设置标题的样式(titleStyle),类型:CSSProperties,默认 {}

  • 倒计时数值的前缀(prefix),类型 string | slot,默认 undefined

  • 倒计时数值的后缀(suffix),类型 string | slot,默认 undefined

  • 完成后的展示文本(finishedText),类型 string | slot,默认 undefined

  • 是否为未来某时刻(future);为 false 表示相对剩余时间戳,类型:boolean,默认 true

  • 格式化倒计时展示(format),类型 string,默认 'HH:mm:ss',(Y/YY:年,M/MM:月,D/DD:日,H/HH:时,m/mm:分钟,s/ss:秒,SSS:毫秒)

  • 倒计时数值(value),类型 number,单位 ms,支持设置未来某时刻的时间戳 或 相对剩余时间戳,默认 0

  • 设置数值的样式(valueStyle),类型:CSSProperties,默认 {}

效果如下图:在线预览

①创建倒计时组件Countdown.vue:

其中引入使用了以下工具函数:

<script setup lang="ts">
import { ref, computed, watchEffect } from 'vue'
import type { CSSProperties } from 'vue'
import { useSlotsExist } from '../utils'
interface Props {
  title?: string // 倒计时标题 string | slot
  titleStyle?: CSSProperties // 设置标题的样式
  prefix?: string // 倒计时数值的前缀 string | slot
  suffix?: string // 倒计时数值的后缀 string | slot
  finishedText?: string // 完成后的展示文本 string | slot
  future?: boolean // 是否为未来某时刻;为 false 表示相对剩余时间戳
  format?: string // 格式化倒计时展示,(Y/YY:年,M/MM:月,D/DD:日,H/HH:时,m/mm:分钟,s/ss:秒,SSS:毫秒)
  value?: number // 倒计时数值,支持设置未来某时刻的时间戳 (ms) 或 相对剩余时间戳 (ms)
  valueStyle?: CSSProperties // 设置数值的样式
}
const props = withDefaults(defineProps<Props>(), {
  title: undefined,
  titleStyle: () => ({}),
  prefix: undefined,
  suffix: undefined,
  finishedText: undefined,
  future: true,
  format: 'HH:mm:ss',
  value: 0,
  valueStyle: () => ({})
})
const slotsExist = useSlotsExist(['prefix', 'suffix'])
const showPrefix = computed(() => {
  return slotsExist.prefix || props.prefix
})
const showSuffix = computed(() => {
  return slotsExist.suffix || props.suffix
})
const showType = computed(() => {
  return {
    showMillisecond: props.format.includes('SSS'),
    showYear: props.format.includes('Y'),
    showMonth: props.format.includes('M'),
    showDay: props.format.includes('D'),
    showHour: props.format.includes('H'),
    showMinute: props.format.includes('m'),
    showSecond: props.format.includes('s')
  }
})
const futureTime = ref(0) // 未来截止时间戳
const restTime = ref(0) // 剩余时间戳
const emit = defineEmits(['finish'])
function CountDown() {
  if (futureTime.value > Date.now()) {
    restTime.value = futureTime.value - Date.now()
    requestAnimationFrame(CountDown)
  } else {
    restTime.value = 0
    emit('finish')
  }
}
watchEffect(() => {
  // 只有数值类型的值,且是有穷的(finite),才返回 true
  if (Number.isFinite(props.value)) {
    // 检测传入的参数是否是一个有穷数
    if (props.future) {
      // 未来某时刻的时间戳,单位ms
      if (props.value >= Date.now()) {
        futureTime.value = props.value
      }
    } else {
      // 相对剩余时间,单位 ms
      if (props.value >= 0) {
        futureTime.value = props.value + Date.now()
      }
    }
    requestAnimationFrame(CountDown)
  } else {
    restTime.value = 0
  }
})
// 前置补 0
function padZero(value: number, targetLength: number = 2): string {
  // 左侧补零函数
  return String(value).padStart(targetLength, '0')
}
function timeFormat(time: number): string {
  let showTime = props.format
  if (showType.value.showMillisecond) {
    var millisecond = time % 1000
    showTime = showTime.replace('SSS', padZero(millisecond, 3))
  }
  time = Math.floor(time / 1000) // 将时间转为 s 为单位
  if (showType.value.showYear) {
    var Y = Math.floor(time / (60 * 60 * 24 * 30 * 12))
    showTime = showTime.includes('YY') ? showTime.replace('YY', padZero(Y)) : showTime.replace('Y', String(Y))
  } else {
    var Y = 0
  }
  if (showType.value.showMonth) {
    time = time - Y * 60 * 60 * 24 * 30 * 12
    var M = Math.floor(time / (60 * 60 * 24 * 30))
    showTime = showTime.includes('MM') ? showTime.replace('MM', padZero(M)) : showTime.replace('M', String(M))
  } else {
    var M = 0
  }
  if (showType.value.showDay) {
    time = time - M * 60 * 60 * 24 * 30
    var D = Math.floor(time / (60 * 60 * 24))
    showTime = showTime.includes('DD') ? showTime.replace('DD', padZero(D)) : showTime.replace('D', String(D))
  } else {
    var D = 0
  }
  if (showType.value.showHour) {
    time = time - D * 60 * 60 * 24
    var H = Math.floor(time / (60 * 60))
    showTime = showTime.includes('HH') ? showTime.replace('HH', padZero(H)) : showTime.replace('H', String(H))
  } else {
    var H = 0
  }
  if (showType.value.showMinute) {
    time = time - H * 60 * 60
    var m = Math.floor(time / 60)
    showTime = showTime.includes('mm') ? showTime.replace('mm', padZero(m)) : showTime.replace('m', String(m))
  } else {
    var m = 0
  }
  if (showType.value.showSecond) {
    var s = time - m * 60
    showTime = showTime.includes('ss') ? showTime.replace('ss', padZero(s)) : showTime.replace('s', String(s))
  }
  return showTime
}
</script>
<template>
  <div class="m-countdown">
    <div class="countdown-title" :style="titleStyle">
      <slot name="title">{
  
  { props.title }}</slot>
    </div>
    <div class="countdown-time">
      <template v-if="showPrefix">
        <span class="time-prefix" v-if="showPrefix || restTime > 0">
          <slot name="prefix">{
  
  { prefix }}</slot>
        </span>
      </template>
      <span v-if="finishedText && restTime === 0" class="time-value" :style="valueStyle">
        <slot name="finish">{
  
  { finishedText }}</slot>
      </span>
      <span v-else-if="Number.isFinite(restTime) && restTime >= 0" class="time-value" :style="valueStyle">
        {
  
  { timeFormat(restTime) }}
      </span>
      <template v-if="showSuffix">
        <span class="time-suffix" v-if="showSuffix || restTime > 0">
          <slot name="suffix">{
  
  { suffix }}</slot>
        </span>
      </template>
    </div>
  </div>
</template>
<style lang="less" scoped>
.m-countdown {
  display: inline-block;
  line-height: 1.5714285714285714;
  .countdown-title {
    margin-bottom: 4px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 14px;
  }
  .countdown-time {
    color: rgba(0, 0, 0, 0.88);
    font-size: 24px;
    font-family: 'Helvetica Neue'; // 保证数字等宽显示
    .time-prefix {
      display: inline-block;
      margin-inline-end: 4px;
    }
    .time-value {
      display: inline-block;
      direction: ltr;
    }
    .time-suffix {
      display: inline-block;
      margin-inline-start: 4px;
    }
  }
}
</style>

②在要使用的页面引入:

<script setup lang="ts">
import Countdown from './Countdown.vue'
function onFinish() {
  console.log('countdown finished')
}
</script>
<template>
  <div>
    <h1>{
  
  { $route.name }} {
  
  { $route.meta.title }}</h1>
    <h2 class="mt30 mb10">基本使用</h2>
    <h3 class="mb10">format: MM月 DD天 HH:mm:ss</h3>
    <Countdown
      title="Countdown 1年"
      :value="12 * 30 * 24 * 60 * 60 * 1000"
      :future="false"
      format="MM月 DD天 HH:mm:ss"
      finished-text="Finished"
      @finish="onFinish"
    />
    <h2 class="mt30 mb10">毫秒倒计时</h2>
    <h3 class="mb10">format: Y 年 M 月 D 天 H 时 m 分 s 秒 SSS 毫秒</h3>
    <Countdown
      title="Million Seconds"
      :value="12 * 30 * 24 * 60 * 60 * 1000"
      :future="false"
      format="Y 年 M 月 D 天 H 时 m 分 s 秒 SSS 毫秒"
      finished-text="Finished"
      @finish="onFinish"
    />
    <h2 class="mt30 mb10">使用插槽</h2>
    <Countdown
      :value="2471875200000"
      format="Y 年 M 月 D 天 H 时 m 分 s 秒 SSS 毫秒"
      finished-text="Finished"
      @finish="onFinish"
    >
      <template #title>2048年 五一 Countdown</template>
      <template #prefix>There's only</template>
      <template #suffix>left for the end.</template>
    </Countdown>
    <h2 class="mt30 mb10">自定义样式</h2>
    <Countdown
      :value="2485094400000"
      format="Y 年 MM 月 DD 天 HH 时 mm 分 ss 秒 SSS 毫秒"
      :title-style="{ fontWeight: 500, fontSize: '18px' }"
      :value-style="{ fontWeight: 600, color: '#1677ff' }"
      @finish="onFinish"
    >
      <template #title>2048年 十一 Countdown</template>
    </Countdown>
    <h2 class="mt30 mb10">倒计时已完成</h2>
    <Space gap="small" vertical>
      <Countdown />
      <Countdown finished-text="Finished" />
    </Space>
  </div>
</template>
相关文章
|
7天前
|
JavaScript
Vue3中路由跳转的语法
Vue3中路由跳转的语法
111 58
|
5天前
|
JavaScript 索引
Vue 2和Vue 3的区别以及实现原理
Vue 2 的响应式系统通过Object.defineProperty来实现,它为对象的每个属性添加 getter 和 setter,以便追踪依赖并响应数据变化。
20 9
|
7天前
|
JavaScript 开发工具
vite如何打包vue3插件为JSSDK
【9月更文挑战第10天】以下是使用 Vite 打包 Vue 3 插件为 JS SDK 的步骤:首先通过 `npm init vite-plugin-sdk --template vue` 创建 Vue 3 项目并进入项目目录 `cd vite-plugin-sdk`。接着,在 `src` 目录下创建插件文件(如 `myPlugin.js`),并在 `main.js` 中引入和使用该插件。然后,修改 `vite.config.js` 文件以配置打包选项。最后,运行 `npm run build` 进行打包,生成的 `my-plugin-sdk.js` 即为 JS SDK,可在其他项目中引入使用。
|
7天前
|
JavaScript 开发者
彻底搞懂 Vue3 中 watch 和 watchEffect是用法
彻底搞懂 Vue3 中 watch 和 watchEffect是用法
|
5天前
|
JavaScript 调度
Vue3 使用 Event Bus
Vue3 使用 Event Bus
10 1
|
5天前
|
JavaScript
Vue3 : ref 与 reactive
Vue3 : ref 与 reactive
9 1
vue3 reactive数据更新,视图不更新问题
vue3 reactive数据更新,视图不更新问题
|
6天前
|
JavaScript
|
6天前
vue3定义暴露一些常量
vue3定义暴露一些常量
|
5天前
Vue3 使用mapState
Vue3 使用mapState
9 0