|
|
hace 3 años | |
|---|---|---|
| .. | ||
| .npmignore | hace 3 años | |
| History.md | hace 3 años | |
| Makefile | hace 3 años | |
| Readme.md | hace 3 años | |
| component.json | hace 3 años | |
| example.html | hace 3 años | |
| index.js | hace 3 años | |
| package.json | hace 3 años | |
request animation frame
$ component install component/raf
Request the animation frame with raf(fn), cancel with raf.cancel(id).
var x = 0;
var y = 50;
var canvas = document.querySelector('canvas');
var ctx = canvas.getContext('2d');
var raf = require('raf');
function animate() {
raf(animate);
draw();
}
var prev = Date.now();
function draw() {
var curr = Date.now();
var diff = curr - prev;
var p = diff / 16;
ctx.clearRect(0, 0, 900, 300);
ctx.beginPath();
ctx.globalAlpha = .5;
ctx.arc(x, y, 10, 0, Math.PI * 2, false);
ctx.fill();
x += 2;
y += Math.sin(x/20) * 5;
prev = curr;
}
animate();
MIT