-
-
Save shoe/2641426 to your computer and use it in GitHub Desktop.
Accurate Javascript setInterval replacement
This file contains 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(duration, fn){ | |
this.baseline = undefined | |
this.run = function(){ | |
if(this.baseline === undefined){ | |
this.baseline = new Date().getTime() | |
} | |
fn() | |
var end = new Date().getTime() | |
this.baseline += duration | |
var nextTick = duration - (end - this.baseline) | |
if(nextTick<0){ | |
nextTick = 0 | |
} | |
(function(i){ | |
i.timer = setTimeout(function(){ | |
i.run(end) | |
}, nextTick) | |
}(this)) | |
} | |
this.stop = function(){ | |
clearTimeout(this.timer) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment