javascript – Jquery动画编号从

前端之家收集整理的这篇文章主要介绍了javascript – Jquery动画编号从前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在这里找到的动画有问题:
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));
    }
  });
});

http://jsfiddle.net/Yy6r6/68/

有人有想法吗?

提前致谢.

最佳答案
为什么不简单地使用回调的第一个参数?

step

Type: Function( Number now,Tween tween )

step: function (i) {
    $this.text(Math.ceil(i));
}

http://jsfiddle.net/Yy6r6/70/

原文链接:https://www.f2er.com/jquery/428299.html

猜你在找的jQuery相关文章