• Stars
    star
    105
  • Rank 317,962 (Top 7 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

minimal tweening engine

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:

  • common set of eases
  • works in node and the browser
  • small, focused and modular design; e.g. tween-ticker is a good fit for modular components
  • interpolates numbers and arrays (i.e. vectors, colors)
  • can tween multiple elements at once
  • tweens are cancellable
  • triggers complete, start, update, cancelling events
  • extensible and optimizable tween types: tween-array, tween-chain, etc

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:

  • eases can be specified to provide a new set of easing functions, defaults to the eases module
  • defaultEase the default easing function, or a string to use as a lookup into the eases object. defaults to a linear function

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:

  • delay in time units, default 0
  • duration in time units, default 0
  • ease is a string (lookup for the eases passed at constructor) or an ease function, defaults to tweenr.defaultEase

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:

  • start triggered when the tween is first started
  • cancelling triggered before the tween completes, initiating from a call to cancel()
  • complete triggered when the tween is completed
  • update triggered after the tween updates its values

License

MIT, see LICENSE.md for details.

More Repositories

1

canvas-sketch

[beta] A framework for making generative artwork in JavaScript and the browser.
JavaScript
4,884
star
2

budo

🎬 a dev server for rapid prototyping
JavaScript
2,174
star
3

lwjgl-basics

πŸ”§ LibGDX/LWJGL tutorials and examples
Java
1,841
star
4

graphics-resources

πŸ“ a list of graphic programming resources
1,748
star
5

color-wander

🎨 Generative artwork in node/browser based on a seeded random
JavaScript
1,615
star
6

promise-cookbook

πŸ“™ a brief introduction to using Promises in JavaScript
1,603
star
7

module-best-practices

πŸ“š some best practices for JS modules
JavaScript
1,521
star
8

workshop-generative-art

A workshop on creative coding & generative art
JavaScript
1,339
star
9

svg-mesh-3d

πŸš€ converts a SVG path to a 3D mesh
JavaScript
1,169
star
10

workshop-webgl-glsl

A workshop on WebGL and GLSL
JavaScript
1,021
star
11

webgl-wireframes

Stylized Wireframe Rendering in WebGL
JavaScript
713
star
12

workshop-p5-intro

Intro to Creative Coding workshop with p5.js and Tone.js
711
star
13

canvas-sketch-util

Utilities for sketching in Canvas, WebGL and generative art
JavaScript
661
star
14

threejs-app

Some opinionated structure for a complex/scalable ThreeJS app
JavaScript
444
star
15

bellwoods

JavaScript
395
star
16

webgl-lines

some interactive content for a blog post
JavaScript
385
star
17

eases

a grab-bag of modular easing equations
JavaScript
372
star
18

jsconfeu-generative-visuals

Code for the generative projection mapped animations during JSConf EU 2018 in Berlin.
JavaScript
336
star
19

audiograph.xyz

A visual exploration of Pilotpriest's 2016 album, TRANS.
JavaScript
335
star
20

load-asset

Loads a single or multiple assets and returns a promise.
JavaScript
311
star
21

glsl-fxaa

FXAA implementation for glslify in WebGL
GLSL
310
star
22

dictionary-of-colour-combinations

palettes from A Dictionary of Colour Combinations
Python
290
star
23

shader-reload

An interface for reloading GLSL shaders on the fly.
JavaScript
284
star
24

penplot

[DEPRECATED] see canvas-sketch
JavaScript
262
star
25

mp4-wasm

[proof-of-concept] fast MP4 mux / demux using WASM
C
258
star
26

gifenc

fast GIF encoding
JavaScript
246
star
27

codevember

codevember
JavaScript
242
star
28

impressionist

🎨 generative painting using perlin noise for motion
JavaScript
242
star
29

three-line-2d

lines expanded in a vertex shader
JavaScript
224
star
30

physical-text

πŸŒ‚ simulating text in the physical world
JavaScript
216
star
31

three-orbit-controls

orbit controls for ThreeJS
JavaScript
213
star
32

mp4-h264

[project suspended] MP4 + H264 encoding for the browser with WASM
C
212
star
33

prot

highly opinionated dev environment [Proof of concept]
JavaScript
201
star
34

template-electron-installation

a template for media art installations using Electron in kiosk mode
JavaScript
199
star
35

yyz

JavaScript
187
star
36

workshop-web-audio

Web Audio workshop with Frontend Masters
JavaScript
185
star
37

parametric-curves

JavaScript
185
star
38

fontpath

Font to vector path tools
JavaScript
183
star
39

ghrepo

:octocat: create a new GitHub repo from your current folder
JavaScript
177
star
40

google-panorama-equirectangular

gets equirectangular images from Google StreetView
JavaScript
172
star
41

image-sdf

generate a signed distance field from an image
JavaScript
171
star
42

glsl-film-grain

natural looking film grain using noise functions
JavaScript
171
star
43

subscapes

generative artwork hosted on Ethereum
JavaScript
169
star
44

pack-spheres

Brute force circle/sphere packing in 2D or 3D
JavaScript
161
star
45

polartone

experimental audio visualizer
JavaScript
154
star
46

dom-css

fast dom CSS styling
JavaScript
153
star
47

tiny-artblocks

Toolkit for small ArtBlocks projects
JavaScript
152
star
48

adaptive-bezier-curve

adaptive and scalable 2D bezier curves
JavaScript
138
star
49

atcq

An implementation of Ant-Tree Color Quantization
JavaScript
136
star
50

workshop-data-artwork

material & notes for a workshop on data artwork & creative coding
JavaScript
125
star
51

kami-demos

🚧 Some demos for the Kami WebGL renderer
JavaScript
122
star
52

rust

experiments
JavaScript
122
star
53

kami

🚧 Rendering ecosystem using Node style packaging
JavaScript
120
star
54

looom-tools

Svelte
115
star
55

esmify

parse and handle import/export for browserify
JavaScript
112
star
56

polyline-normals

gets miter normals for a 2D polyline
JavaScript
112
star
57

three-vignette-background

a simple ThreeJS vignette background
JavaScript
111
star
58

simple-input-events

Unified mouse & touch events for desktop and mobile
JavaScript
105
star
59

text-modules

✏️ a list of text/font modules
104
star
60

spectrum

a small tool to visualize the frequencies of an audio file
JavaScript
104
star
61

three-shader-fxaa

optimized FXAA shader for ThreeJS
JavaScript
102
star
62

lerp

bare-bones linear interpolation function
JavaScript
101
star
63

svg-path-contours

gets a discrete list of points from svg
JavaScript
90
star
64

pen-plotter-blog-post

JavaScript
90
star
65

canvas-sketch-cli

A CLI used alongside canvas-sketch
JavaScript
88
star
66

simplify-path

simplify 2D polyline of arrays
JavaScript
83
star
67

garnish

🍸 prettifies ndjson from wzrd and similar tools
JavaScript
81
star
68

get-rgba-palette

gets a palette of prominent colors from an array of pixels
JavaScript
81
star
69

keytime

[EXPERIMENT] keyframe animation tools
JavaScript
79
star
70

three-glslify-example

a simple example of ThreeJS with glslify
GLSL
77
star
71

canvas-text

[experiment] better Canvas2D text rendering
JavaScript
77
star
72

raylight

Experimental WebGL Music Visualizer
JavaScript
76
star
73

verlet-system

2D and 3D verlet integration
JavaScript
75
star
74

word-wrapper

wraps words based on arbitrary 2D glyphs
JavaScript
71
star
75

mp4-wasm-encoder

JavaScript
70
star
76

gl-sprite-text

bitmap font rendering for stackgl
JavaScript
69
star
77

tendril-webtoy-blog-post

A blog post for an interactive Tendril web toy
68
star
78

paper-colors

A small set of pastel and off-white paper colors
JavaScript
68
star
79

threejs-tree-shake

Tree-shakes and optimizes ThreeJS apps
JavaScript
66
star
80

gh-readme-scrape

a CLI to bulk download URLs (images/pdfs/etc) from GitHub readmes
JavaScript
65
star
81

fika

A figma plugin generator
JavaScript
60
star
82

shadertoy-export

render ShaderToy demos to PNG
JavaScript
59
star
83

glsl-random

pseudo-random 2D noise for glslify
C
59
star
84

electron-canvas-to-buffer

in Electron, turns a Canvas into a Buffer
JavaScript
55
star
85

gl-vignette-background

a soft gradient background in WebGL
JavaScript
55
star
86

webpack-three-hmr-test

test of ThreeJS + Webpack + HMR
JavaScript
53
star
87

workshop-generative-color

a workshop on color science for generative art and creative coding
JavaScript
52
star
88

filmic-gl

filmic GLSL shaders in ThreeJS
JavaScript
51
star
89

riso-colors

A list of Risograph printer colors
51
star
90

gsx-pdf-optimize

Optimize PDFs with Ghostscript command
JavaScript
50
star
91

raf-loop

a minimal requestAnimationFrame render loop
JavaScript
49
star
92

gdx-swiper

An example of a "Fruit Ninja" style swipe in LibGDX
Java
47
star
93

gsap-promise

promise wrapper for gsap (TweenLite)
JavaScript
47
star
94

browserify-example

a bare-bones, no-bullshit example of using browserify to dev + build a static demo
JavaScript
45
star
95

extract-svg-path

extracts a string of subpaths from an svg file
JavaScript
45
star
96

figma-plugin-palette

"Image Palette" Plugin in Figma
JavaScript
42
star
97

adaptive-quadratic-curve

adaptive and scalable 2D quadratic curves
JavaScript
42
star
98

three-geometry-data

Get vertex and face data from THREE.Geometry
JavaScript
40
star
99

budo-chrome

an extension of budo dev server that supports live script injection
JavaScript
39
star
100

three-tube-wireframe

Builds a tube-based wireframe geometry in ThreeJS
JavaScript
39
star