ThomWright / flyd-onAnimationFrame

Emits values on successive animation frames.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flyd-onAnimationFrame

Travis npm David David

Emits values on successive animation frames.

Signature

Stream -> Stream

Usage

const stream = flyd.stream();
const onFrame = onAnimationFrame(stream);

flyd.map(function(x) {
  console.log('Time/Output', Date.now(), x);
}, onFrame);

[1, 2, 3, 4, 5]
  .forEach(n => stream(n));

// Time/Output 1434813866911 1
// Time/Output 1434813866927 2
// Time/Output 1434813866943 3
// Time/Output 1434813866961 4
// Time/Output 1434813866977 5

About

Emits values on successive animation frames.

License:MIT License


Languages

Language:JavaScript 100.0%