CountUp.js实现数字滚动增值效果(2)

var options = { useEasing: true, // 使用缓和效果 useGrouping: true, // 使用分组效果 separator: ',', // 分离器,数据够三位,例如100,000 decimal: '.', // 小数点分割,例如:10.00 prefix: '', // 第一位默认数字,例如:¥ suffix: '' // 最后一位默认数字,例如:元,美元 } // new CountUp(target, startVal, endVal, decimals, duration, options) // target = 目标元素的 ID // startVal = 开始值 // endVal = 结束值 // decimals = 小数位数 默认值是0 // duration = 动画延迟秒数,默认值是2; // options = optional object of options (see below) var demo = new CountUp('extractionMoney', 0, data.balanceAmount, 2, 0.5, options) if (!demo.error) { demo.start() } else { console.error(demo.error) }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/c46a8a3372d36f9153baef46a3218dcf.html