jQuery计数器动画循环功能

时间:2018-11-26 09:56:32

标签: jquery function loops animation counter

我正在尝试使用jquery在0到9之间创建一个计数器:

eachtime(num++);

 **1.** 0 1 2 3 .... 9

restart();

HTML:

<div id="num">1</div>

JavaScript:

$(document).ready(function(){
    $("#num").animate({value :9},
    {
        duration: 2000,
        step: function(a){
            $(this).text(Math.ceil(a));
        }
    }
); 
});

所以我想循环播放动画并向动画添加更多的数字类,但是我不知道该怎么做。我一直在寻找解决方案,但直到现在都找不到。

有人能告诉我动画达到9点后如何重做吗? 以及如何将动画嵌套更多的数字,而不是如上所示的1。

0 个答案:

没有答案