Skip to content

estrattonbailey/tinkerbell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

💫 Tiny tweening library that sparkles.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published