Last active
December 30, 2016 17:44
-
-
Save Alex-xd/6cc6015eb37e6218257d0068ecd9d89c to your computer and use it in GitHub Desktop.
JS动画
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() { | |
var lastTime = 0; | |
var vendors = ['webkit', 'moz']; | |
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { | |
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame']; | |
window.cancelAnimationFrame = | |
window[vendors[x]+'CancelAnimationFrame'] || window[vendors[x]+'CancelRequestAnimationFrame']; | |
} | |
if (!window.requestAnimationFrame) | |
window.requestAnimationFrame = function(callback, element) { | |
var currTime = new Date().getTime(); | |
var timeToCall = Math.max(0, 16 - (currTime - lastTime)); | |
var id = window.setTimeout(function() { callback(currTime + timeToCall); }, | |
timeToCall); | |
lastTime = currTime + timeToCall; | |
return id; | |
}; | |
if (!window.cancelAnimationFrame) | |
window.cancelAnimationFrame = function(id) { | |
clearTimeout(id); | |
}; | |
}()); | |
Edit in JSFiddle | |
Result | |
JavaScript | |
// requestAnim shim layer by Paul Irish | |
window.requestAnimFrame = (function(){ | |
return window.requestAnimationFrame || | |
window.webkitRequestAnimationFrame || | |
window.mozRequestAnimationFrame || | |
window.oRequestAnimationFrame || | |
window.msRequestAnimationFrame || | |
function(/* function */ callback, /* DOMElement */ element){ | |
window.setTimeout(callback, 1000 / 60); | |
}; | |
})(); | |
// example code from mr doob : http://mrdoob.com/lab/javascript/requestanimationframe/ | |
var canvas, context, toggle; | |
init(); | |
animate(); | |
function init() { | |
canvas = document.createElement( 'canvas' ); | |
canvas.width = 512; | |
canvas.height = 512; | |
context = canvas.getContext( '2d' ); | |
document.body.appendChild( canvas ); | |
} | |
function animate() { | |
requestAnimFrame( animate ); | |
draw(); | |
} | |
function draw() { | |
var time = new Date().getTime() * 0.002; | |
var x = Math.sin( time ) * 192 + 256; | |
var y = Math.cos( time * 0.9 ) * 192 + 256; | |
toggle = !toggle; | |
context.fillStyle = toggle ? 'rgb(200,200,20)' : 'rgb(20,20,200)'; | |
context.beginPath(); | |
context.arc( x, y, 10, 0, Math.PI * 2, true ); | |
context.closePath(); | |
context.fill(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment