创建 new CountUp("ID选择器", 开始值, 结束值, 小数位数, 只需时间, options对象)
options对象:{
useEasing: true, -----使用缓和
useGrouping: true, -----使用分组(是否显示千位分隔符,一般为 true)
separator: ',', -----分隔器(千位分隔符,默认为',')
decimal: '.', ----- 十进制(小数点符号,默认为 '.')
prefix: '', -----字首(数字的前缀,根据需要可设为 $,¥,¥ 等)
suffix: '' -----后缀(数字的后缀 ,根据需要可设为 元,个,美元 等
}
val.start()
三部分
设置options对象 创建CountUp 执行.start()
网友评论