jquery 数字滚动方法详解编程语言

jquery 数字滚动方法
用的是countUp.js这个插件

target = 目标元素的 ID;
startVal = 开始值;
endVal = 结束值;
decimals = 小数位数,默认值是0;
duration = 动画延迟秒数,默认值是2;

1先初始化


var options = {  
useEasing: true,
  useGrouping: false,
  separator: ',',
  decimal: '.',
};
var demo = new CountUp('few', 0, 0, 0, 0.5, options);
if (!demo.error) {  
demo.start();
} else {  
console.error(demo.error);
}

2更新


demo.update(6000);

详细参数看http://inorganik.github.io/countUp.js/

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/18848.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论