我曾尝试设置countUp.js,但无法加载,我对Javascript或Jquery很新,所以也许我做错了什么?
<div id="count"></div>
//脚本可能有问题吗?
var options = {
useEasing: true,
useGrouping: true,
separator: ',',
decimal: '.'
prefix: ''
suffix: ''
}
var test = new countUp("count", 1350, 10000, 0, 5000, options);
demo.start();
答案 0 :(得分:4)
首先,对象的某些属性缺少其尾随,
,因此您会出现语法错误。此外,您需要在start()
变量上调用test
,而不是demo
。试试这个:
var options = {
useEasing: true,
useGrouping: true,
separator: ',',
decimal: '.',
prefix: '',
suffix: ''
}
var test = new countUp("count", 1350, 10000, 0, 5000, options);
test.start();