Skip to content

Instantly share code, notes, and snippets.

@beatobongco
Created April 29, 2015 10:45
Show Gist options
  • Save beatobongco/739be299da08540b0eac to your computer and use it in GitHub Desktop.
Save beatobongco/739be299da08540b0eac to your computer and use it in GitHub Desktop.
Useful for queueing animations
function Queue() {
this._sleep = 0
this.add = function(f, sleep) {
this._sleep += sleep
setTimeout(function(){
f()
}, this._sleep)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment