0.2.0 • Published 10 years ago

fd-animate v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

fd-animate

npm version

Animate DOM elements in functional way.

Check out the live demo

Installation

npm install fd-animate --save

Usage

let animate = require('fd-animate');

let animationFunction = () => [
      {cssProperty: value0},
      {cssProperty: value1},
      {cssProperty: value2},
     ];
let configFunction = () => {
     duration: timeInMs,
     iterations: iterationCount,
     delay: delayValue
  }
  
let player = animate(animationFunction, configFunction, element);