-
-
Save gengkev/1528336 to your computer and use it in GitHub Desktop.
Accurate Javascript setInterval replacement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Interval(func,duration){ | |
if(typeof func !== "function") throw new TypeError("Expected function"); | |
else if(typeof duration !== "number") throw new TypeError("Expected number"); | |
this.func = func; | |
this.duration = duration; | |
this.baseline = +new Date(); | |
(function(_this){ | |
_this.timer = setTimeout(function(){ | |
_this.run(); | |
},duration); | |
})(this); | |
}; | |
Interval.prototype.run = function(){ | |
this.func.call(window); | |
this.baseline += this.duration; | |
var nextTick = this.duration + this.baseline - new Date(); | |
if(nextTick<0) nextTick = 0; | |
(function(_this){ | |
_this.timer = setTimeout(function(){ | |
_this.run(); | |
},nextTick); | |
})(this); | |
}; | |
Interval.prototype.stop = function(){ | |
clearTimeout(this.timer); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Something interesting...