我在这里找到的动画有问题:
jQuery animated number counter from zero to value
这是问题所在,我在测试网站上使用它,并且计数器在大数字时没有确切的值.
这是HTML:
这是javascript:
$('.Count').each(function () {
var $this = $(this);
jQuery({ Counter: 0 }).animate({ Counter: $this.text() },{
duration: 1000,easing: 'swing',step: function () {
$this.text(Math.ceil(this.Counter));
}
});
});
有人有想法吗?
提前致谢.
最佳答案
为什么不简单地使用回调的第一个参数?
原文链接:https://www.f2er.com/jquery/428299.htmlstep
Type: Function( Number now,Tween tween )
step: function (i) {
$this.text(Math.ceil(i));
}