
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
vue-countup-v3
Advanced tools
Vue 3 component wrap for countUp.js
# npm
$ npm i countup.js vue-countup-v3 -S
# yarn
$ yarn add countup.js vue-countup-v3 -S
简单示例
<script setup lang="ts">
import CountUp from 'vue-countup-v3'
</script>
<template>
<count-up :endVal="2000"></count-up>
</template>
完整示例
<script setup lang="ts">
import CountUpV3 from 'vue-countup-v3'
import type { CountUp } from 'countup.js';
// coutup.js options
const options = {
decimalPlaces: 2,
// ...
}
const onInit = (countup: CountUp) => {
console.log('init', countup)
}
const onFinished = () => {
console.log('finished')
}
</script>
<template>
<count-up
:endVal="2000"
:duration="3"
:loop="2"
:options="options"
@init="onInit"
@finished="onFinished"></count-up>
</template>
以下属性同 coutup.js 配置项
Name | Type | Default | Description |
---|---|---|---|
endVal | Number | String | - | 结束值 |
startVal | Number | String | 0 | 起始值 |
duration | Number | 2.5 | 动画时长,单位:秒 |
options | Object | - | countUp.js options 配置项 |
以下为组件自有属性
Name | Type | Default | Description |
---|---|---|---|
autoplay | Boolean | true | 是否自动计数 |
loop | Boolean | Number | false | 为数值时代表次数,为 true 时无限循环 |
see more countUp.js
interface CountUpOptions {
startVal?: number; // number to start at (0) 开始数值,默认 0
decimalPlaces?: number; // number of decimal places (0) 小数点 位数
duration?: number; // animation duration in seconds (2) 动画时长
useGrouping?: boolean; // example: 1,000 vs 1000 (true) 是否使用千分位
useEasing?: boolean; // ease animation (true) 动画函数类型
smartEasingThreshold?: number; // smooth easing for large numbers above this if useEasing (999)
smartEasingAmount?: number; // amount to be eased for numbers above threshold (333)
separator?: string; // grouping separator (',') 千位分隔符
decimal?: string; // decimal ('.') 小数点分隔符
// easingFn: easing function for animation (easeOutExpo) 动画函数
easingFn?: (t: number, b: number, c: number, d: number) => number;
formattingFn?: (n: number) => string; // this function formats result 格式化结果
prefix?: string; // text prepended to result 数值前缀
suffix?: string; // text appended to result 数值后缀
numerals?: string[]; // numeral glyph substitution 数字符号替换 0 - 9,例如替换为 [a,b,c,d,e,f,g,h,i,j]
enableScrollSpy?: boolean; // start animation when target is in view 在可视范围内才开始动画
scrollSpyDelay?: number; // delay (ms) after target comes into view 目标进入可视范围内后的延迟时间(毫秒)
}
Toggle pause/resume 切换暂停/回复
countUp.pauseResume();
Reset the animation: 重置数值
countUp.reset();
Update the end value and animate: 修改结束值
countUp.update(1000);
MIT
FAQs
Vue 3 component wrap for countUp.js,and expand some features.
The npm package vue-countup-v3 receives a total of 5,827 weekly downloads. As such, vue-countup-v3 popularity was classified as popular.
We found that vue-countup-v3 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.