在setTimeout中包装jQuery函数

时间:2019-06-04 20:00:03

标签: javascript jquery settimeout

我需要为此功能设置一个延迟-但它似乎不喜欢我的设置方式:

setTimeout(
    $('.ticker1').each(function () {
        $('.ticker1').prop('Counter',0).animate({
            Counter: $(this).text()
        }, {
            duration: 5000,
            easing: 'swing',
            step: function (now) {
                $('.ticker1').text(Math.ceil(now));
            }
        });
    }, 5000);

0 个答案:

没有答案