2016-10-24 144 views
0

我發現了一個很棒的計數器腳本,但是在計數達到999後我需要重複其中一個腳本。在計數完成後,我會添加什麼來重複它?如何在計時器完成時重複JQuery計數器

 jQuery_2_2_4('#count-five').jQuerySimpleCounter({ 
      start : 0, 
      end : 999, 
      // easing effect 
      easing : 'linear', 
      // duration time in ms 
      duration : 100000 
     }); 
+0

把這個放在一些函數中並在999之後再次調用函數 –

回答

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(); 
+0

謝謝!像魅力一樣工作! – user2593040