Last active
August 29, 2015 14:16
-
-
Save molokoloco/16fdddf807c81f576ac4 to your computer and use it in GitHub Desktop.
JS animations techniques
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
// Simple anim | |
var fps = 1000/60; | |
var tick = function () { | |
// animate something | |
if (notFinish) setTimeout(tick, fps); | |
}; | |
tick(); | |
// Cross-browsers "requestAnimationFrame" | |
// http://gist.github.com/paulirish/1579671 | |
window.requestAnimFrame = (function() { | |
return window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
window.oRequestAnimationFrame || | |
window.msRequestAnimationFrame || | |
function(/* function */ callback, /* DOMElement */ element){ | |
window.setTimeout(callback, 1000 / 60); | |
}; | |
})(); | |
// And then... | |
var tick = function () { | |
if (notFinish) requestAnimFrame(tick); | |
// animate something | |
}; | |
tick(); | |
// A more sophisticated technique would be to check the number of milliseconds | |
// past since the last draw call and update the animation’s position based on the time difference | |
var time; | |
var draw = function() { | |
requestAnimationFrame(draw); | |
var now = new Date().getTime(), | |
dt = now - (time || now); | |
time = now; | |
// Drawing code goes here... for example updating an 'x' position: | |
this.x += 10 * dt; // Increase 'x' by 10 units per millisecond | |
}; |
Author
molokoloco
commented
Apr 21, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment