tweeny

1.0.5 • Public • Published

Tweeny

A teeny tween class!

npm install --save tweeny

Usage

var Tween          = require('tweeny')
var easeInOutQuart = require('tweeny/easing/easeInOutQuart')
 
var target = document.querySelector('#thing')
 
var tween = new Tween({
  from: { opacity: 0 },
  to: { opacity: 1 },
  duration: 1000,
  easing: easeInOutQuart,
  onUpdate: function(state) {
    target.style.opacity = state.opacity
  },
  onComplete: function() {
    alert('done!')
  }
})

For < IE 10 support, you'll need to requestAnimationFrame polyfill.

Easing functions by Robert Penner.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.5
    0
    • latest

Version History

Package Sidebar

Install

npm i tweeny

Weekly Downloads

0

Version

1.0.5

License

MIT

Last publish

Collaborators

  • greypants