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

woosh-tween

v0.4.2

Published

Tiny tweening library with bezier easings

Downloads

12

Readme

woosh

Tiny tweening library

Tiny, because it's heavily based on gre/bezier-easing. What woosh does is provide a controller with which you can instantiate animation objects and start the animation. Not much magic, bot does the job with minimal code.

Usage

Event examples

var canvas = document.getElementById("viewport")
  , ctx = canvas.getContext("2d")

var animation = woosh({
  delay: 3000,
  duration: 2000,
  loop: true,
  ease: [0.25, 0.1, 0.0, 1.0]
})
  .listen("start", function (){
    console.log("Hey ho, let's go!")
  })
  .listen("stop", function (){
    console.log("Halted!")
  })
  .listen("end", function (){
    console.log("Done!")
  })
  .start(function moveRectangle( p ){ // p move from 0 to 1
    ctx.clearRect(0, 0, canvas.width, canvas.height)
    ctx.fillStyle = "hsl(" + Math.round(255 * p) + ",80%,50%)"
    var w = 50
    var h = 50 + p * (canvas.height - 50)
    ctx.fillRect((canvas.width - w) * p, (canvas.height - h) * 0.5, w, h)
  })

Property animation

var box = document.getElementById("box")
  , box2 = document.getElementById("box2")

var propertyAnimation = woosh({
  duration: 2000,
  loop: 10,
  ease: [0.25, 0.1, 0.0, 1.0],
  context: box
})
  .to(box, {
    left: "500px",
    top: "100px"
  })
  .listen("cycle", function( cycleCount ){
    this.textContent = 10-cycleCount
  })

var propertyAnimation2 = woosh({
  duration: 2000,
  loop: true,
  ease: [0.25, 0.1, 0.0, 1.0],
  context: box2
})
  .to(box2, {
    left: 0,
    top: -100
  })

(tiny) API

Methods

.ease ( String easingAlias )

Set the easing with an easing alias. See them down below.

.ease ( Function customEasingFunction )

Define a custom easing function.

customEasingFunction( Number p ){ return p }

This function receives the current animation progress and should return a modified value for it.

.ease ( Number mX1, Number mY1, Number mX2, Number mY2 )

These numbers will be passed to BezierEasing. They are the css equivalent of a bezier easing function's arguments.

.tween (Object options)

Set multiple options regarding the tween.

options.duration [optional] Number default: 0

The duration of the animation.

options.delay [optional] Number default: 0

Delays the animation in milliseconds.

options.loop [optional] Boolean|Number default: false

A boolean true indicates an infinite loop. A number indicates how many times the animation should loop.

options.ease [optional] see .ease(...) arguments

Sets the easing function for the animation.

options.context [optional] Any default: the animation object

A context the rendering function (passed to .start(Function render)) will be called with.

.start (Function render)

Kick off the animation, and use the provided rendering function to do stuff.

function render( Number p ){ return p }

The rendering function receives one parameter which travels from 0 to 1. From the start of the animation to the end it indicates the progress.

.stop()

Stops the animation. Starting again will start from all over again.

.to( Any subject, Object to)

Property animation. In this case .start() is called automatically.

subject is the host on properties will be modified. to is a hash of end values.

.listen | on (String channel, Function callback)

Register a callback for an event.

.unlisten | off | removeListener (String channel, Function callback)

Unregister a listener from an event.

.once (String channel, Function callback)

Listen to an event only once.

Events

"start", function(){}

Triggered right before the first animation loop.

"stop", function(){}

Triggered when .stop() is called.

"end", function(){}

Triggered right after the last render happened.

"cycle", function(Animation animation, Number currentCycleCount){}

Triggered on each cycle if the animation is looping.

Easings

Bezier shortcuts

  • "ease"
  • "linear"
  • "ease-in"
  • "ease-out"
  • "elastic"

Easing functions

Equations are adapted from Thomas Fuchs' Scripty2. Based on Easing Equations (c) 2003 Robert Penner, all rights reserved. This work is subject to terms. TERMS OF USE - EASING EQUATIONS Open source under the BSD License. Easing Equations (c) 2003 Robert Penner, all rights reserved.

  • "swingFromTo"
  • "swingFrom"
  • "swingTo"
  • "bounce"
  • "bouncePast"