我需要为此功能设置一个延迟-但它似乎不喜欢我的设置方式:
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);