mattdesl / tweenr

minimal tweening engine
MIT License
105 stars 3 forks source link

tweenr

stable

Minimal tweening engine which operates on numbers and arrays.

var tweenr = require('tweenr')()

var data = { opacity: 0, position: [15, 25] }
tweenr.to(data, { 
    opacity: 1, 
    position: [20, 50], 
    ease: 'expoOut', 
    duration: 1, //in seconds 
    delay: 0.25
})

motivations

I love the simplicity of GreenSock's animation tools, but I don't agree with some of their practices (i.e. polluting tweened objects with variables) and find myself only using a tiny fraction of their entire codebase.

Some features of tweenr:

Usage

NPM

tweenr = require('tweenr')([opt])

Creates a new instanceof Tweenr and attaches itself to an application-wide render loop (to minimize animation frame requests). By default, this includes a common set of eases. Options:

tween = tweenr.to(tween)

If only one argument is given, this method pushes a new tween onto the stack, returning that tween for chaining. Same as tweenr.push(tween).

tween = tweenr.to(element, opt)

A convenience version of to() which handles the most common case: object tweening. If the second argument, opt is truthy and an object, this method creates a new object tween and pushes it onto the stack.

The tween modifies element, which can be an array of objects, or a single object. opt can be the following:

Any other properties to opt will be tweened if they are consistent with element and also if they are a number or an array.

var elements = [
    { x: 25, shape: [10, 5] },
    { x: 15, opacity: 0 }
]

var tween = tweenr.to(elements, { 
    opacity: 1,
    shape: [5, 0],
    duration: 3,
    delay: 0.25
})

/*
    after tween is finished, element will equal:
    [
        { x: 25, shape: [5, 0] },
        { x: 15, opacity: 1 }
    ]
*/

tween = tweenr.to()

If no arguments are given, this method creates an "empty" or dummy tween that can be cancelled. This is similar to the way noop functions are used to avoid conditionals in functional programming.

tweenr.push(tween)

Pushes a generic tween object onto the stack. Like tweenr.to(tween) but more explicit.

var array = require('tween-array')
tweenr.push(array(start, end, { duration: 5 }))
    .on('complete', doSomething)

tweenr.dispose()

Disposes this instance, removing it from the application-wide frame loop.

tweenr.on('tick', fn)

Attaches a function to this tweenr's tick. The event is triggered by the application-wide frame loop with a delta parameter in seconds.

This event will stop after tweenr.dispose().

tweenr.cancel()

Clears and cancels all tweens stored in this tweenr instance. Returns this for chaining.

tweenr.timeScale

A value (default 1.0) which scales the delta time per frame, allowing you to slow down or speed up an instance of tweenr.

--

The return value of tweenr.to() is a tween with the following:

tween.cancel()

Cancels the tween, removing it from the queue on the next tick without applying any further interpolation.

tween.on(event, func)

The returned tween is an event emitter with the following events:

License

MIT, see LICENSE.md for details.