-
Notifications
You must be signed in to change notification settings - Fork 0
CountUp 数字动画
tanhaolong edited this page Jan 6, 2022
·
1 revision
适用于金额类功能场景动画,可自定义样式。
<CountUp :Textnumber="3000.54" :duration="3000" :CountUpStyle="{color:'red',fontSize:'20px'}" />
<CountUp :Textnumber="3000.54" :duration="3000" :CountUpStyle="{color:'red',fontSize:'20px'}" />
import { CountUp } from 'lxnuoyan-ui';
export default {
components: {CountUp},
};
参数 | 数据类型 | 默认值 | 必填 | 字段名称 | 备注 |
---|---|---|---|---|---|
Textnumber | Number | null | 是 | 显示数字滚动文本 | |
CountUpStyle | Object | null | 否 | 自定义样式 | 与vue动态样式写法一致 |
duration | Number | 3000 | 否 | 动画时长 |