我找到了一个很好的计数器脚本,但是在其中一个脚本上我需要它在计数达到999后重复。在完成计数后我会添加什么来重复它?
jQuery_2_2_4('#count-five').jQuerySimpleCounter({
start : 0,
end : 999,
// easing effect
easing : 'linear',
// duration time in ms
duration : 100000
});
答案 0 :(得分:2)
计数器插件公开complete
回调。如果要重复,请在完整功能中运行相同的命令。这是一种方法:
function repeatCounter() {
jQuery_2_2_4('#count-five').jQuerySimpleCounter({
start : 0,
end : 999,
// easing effect
easing : 'linear',
// duration time in ms
duration : 100000,
complete: repeatCounter
});
}
repeatCounter();