0.2.0 • Published 6 years ago

tinkerbell v0.2.0

Weekly downloads
65
License
MIT
Repository
github
Last release
6 years ago

tinkerbell

Tiny tweening library that sparkles. 200 bytes gzipped.

Install

npm i tinkerbell --save

Usage

import tink from 'tinkerbell'

function easeInOut (t, b, c, d) {
  if ((t /= d / 2) < 1) return c / 2 * t * t + b
  return -c / 2 * ((--t) * (t - 2) - 1) + b
}

const tween = tink(0, 500, 1000, easeInOut)

/** on each tick */
function tick (val) {}

/** on complete */
function done () {}

const stop = tween(tick, done)

/** stop animation in progress */
stop()

License

MIT License © Eric Bailey

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago