npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gm-tween

v2.2.2

Published

Fluent objected based value tweening, with easing curves, callbacks and basic colour tweening

Downloads

9

Readme

Tween

CommonJS Animation Utility. Extensively tested and used in production systems, games, web audio and animation. It is solid. However, this module is no longer being supported as it's been replaced with separate 'Animation Timer', 'Functional Easing' and 'DOM Matrix Transformer' with all other interpolation of values being left to your own implementation.

Installation

Browserify/npm

    $ npm install --save gm-tween
  var Tween = require('gm-tween').Tween;

Every few years I seem to have another crack at writing some kind of animation utility. With new sub-millisecond timings available to decent browsers and CommonJS taking off, it made sense to do something better suited to the modern world.

Tween takes advantage of "Tick", which is a central, single animation loop that offers sub-millisecond timings and normalised outputs.

It also uses "Easing". I took the old Bezier Curve based easing and turned it into a standalone module that could take user configurable normalised cubic bezier curves and, when used in CSS3 Curve mode identically replicates transition-timing-function: cubic-bezier() based easing.

Inspired by "Component/Tween" I shamelessly borrowed their concept of tweening objects rather than single values. So, you can do:

var Tween = require('tween').Tween;
new Tween({ left : 0, top: 0}).to({ left : 100, top : 100 })

and, in your tick callback, you get values = { left : 45.4554, top : 45.4554 } which, handily, you can do something like $( someElement ).css( values );

Even better, and I think this is pretty nifty, you can do:

new Tween('#FF0000').to('#F8E423');

and, in your tick callback you get values = { r : 254, g : 156, b : 34 } . I guess it would be nice if it also had a hex string ready to go, but that's for another day.

Note, also, vaguely fluent interface. Configure your tween with method calls. Easier to remember. Various IDE tools can help you out, too.

Updates

  • Support for using arrays as your from and to values, and getting arrays back in the tick handle.
  • useDeltas() method gets relative values instead of absolute values
  • Tween object exported so you can now do new Tween()

Features

  • Less glitchy and more precise and reliable than CSS3 transitions on Desktop.
  • Low level, DOM neutral
  • Only 12k built and minified
  • Replicates CSS3 cubic-bezier easing exactly in software.
  • Async begin, finish and tick callbacks.
  • Slinky easing and smooth animation.
  • Frame skipping / Progressive enhancement. Animations last the duration specified, and get smoother as the browser allows
  • Cross browser support.
  • Fluent interface

API

new Tween( from )

var Tween = require('tween').Tween;
tween = new Tween({ left: 10 });

create a new Tween object. Optionally takes a 'from' key-value pair that represents the start values for the tween.

Can also take a string representing a colour, which will generate an object with r, g, b and a properties for tweening, or an array, or a single number.

new Tween([0,1,4]);
new Tween('#ff00ff');
new Tween(45);

Tween Object API

.from( keyvaluepairs || color string || array)

tween.from({ left : 10, top : 10 })

If you forgot or don't like setting the from values when creating the Tween object, this method is for you.

Can also take a string representing a colour, which will generate an object with r, g, b and a properties for tweening.

.to( keyvaluepairs || colour string )

tween.to({ left: 100, top: 50 })

Every tween needs a start and an end. Set the end values here. Use the same data type as your 'from', hash, array, colour string, etc.

.using( easing )

All the functionality in the Easing module is exposed here, but luckily the API is a lot simpler.

// with preset... 
var myTween = new Tween({ left : 10}).to({ left : 100 }).using('ease-in');

// or with CSS3 cubic bezier curve data AND `Y When Xn === t` easing
var myTween = new Tween({left : 10}).to({ left : 100}).using([0.015,0.83,0.375,0.995]) 

// or with a full cubic bezier curve..
var myTween = new Tween({left : 10}).to({ left : 100})
  .using({ 
    c1 : [0,0], 
    c2 : [0.015,0.83], 
    c3 : [0.375,0.995], 
    c4 : [1,1]
  })

.duration( time )

Define how long the animation should take to run. In my experience so far this is more reliable and accurate than system CSS3 animations, but more testing is required to verify this.

Valid durations are ms, s, m, h, d and w;

myTween.duration('10s')
myVeryLongRunningTween.duration('2h')
// or just direct milliseconds
myTween.duration(3500)

.useDeltas()

Put this in your chain somewhere and you'll get relative values - changes since last tick instead of absolute values.

Bear in mind it's unlikely that all the deltas will add up exactly, so you may wish to use the 'finish' callback to make sure your tween ends exactly where you want it to end.

.tick( callback )

Define the callback which will do the actual work required on the tick event.

myTween.tick(function( values ){ 

  element.css(values);

});

myOtherTween.tick(function(values){

  element.style.left = values.left + "px";

});

.begin( callback )

Simple callback that fires when the animation starts playing.

.finish( callback )

Simple callback that fires when the animation is done.

.play()

Play the animation immediately.

.stop()

Changed your mind? Stop the animation.

License

MIT