码迷,mamicode.com
首页 > 其他好文 > 详细

中央定时器控制

时间:2017-11-21 22:15:33      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:var   als   run   stop   top   timer   timers   length   art   

var timer = {
        timerId : 0,
        timers : [],
        
        add : function(fn){
            this.timers.push(fn);
        },
        
        start : function(){
            if(this.timerId){
                return;
            }
            (function runNext(){
                if(timer.timers.length > 0){
                    for(var i = 0; i < timer.timers.length; i++){
                        if(timer.timers[i]() === false){
                            timer.timers.splice(i,1);
                            i--;
                        }
                    }
                    timer.timerId = setTimeout(runNext,0);
                }
            })();
        },
        
        stop : function(){
            clearTimeout(this.timerId);
            this.timerId = 0;
        }
};

 

中央定时器控制

标签:var   als   run   stop   top   timer   timers   length   art   

原文地址:http://www.cnblogs.com/halo-yang/p/7875371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!