CountTo 滚动计数 v.1.0.8+

一个轻量级带有动画过渡的计数器。

基础使用

点击查看代码
<template>
  <div class="demo">
    <AgelCountTo :from="10" :to="6666.66" :precision="2" suffix="" ref="count" style="font-size: 30px;"></AgelCountTo>
    <div style="margin-top: 20px;">
      <ElButton @click="() => count.start()" size="small">开始</ElButton>
      <ElButton @click="() => count.reset()" size="small">重置</ElButton>
    </div>
  </div>
</template>

<script setup lang='ts'>
import { ref } from 'vue';

const count = ref()
</script>

<style scoped></style>

属性

属性类型默认值说明
fromnumber0动画起始数字
tonumber0动画结束数字
durationnumber2500动画过渡时间
precisionnumber0精度保留多少小数
prefixstring-文本前缀
suffixstring-文本后缀
autoplaybooleantrue是否自动播放
show-separatorbooleantrue是否显示分隔符

方法

名称参数说明
start-开始
reset-重置

该组件源码实现来自 vue-countTo open in new window

Last Updated:
Contributors: agrass