0.2.3 • Published 5 years ago

inrtia v0.2.3

Weekly downloads
87
License
MIT
Repository
github
Last release
5 years ago

☄️ inrtia.js

lightweight (3kB not gzipped) inertia based animation library

Demo

https://jonasfolletete.github.io/inrtia/

Examples

Basic Usage

import Inrtia from 'inrtia';

var inrtia = new Inrtia({
	value : 0,
	interpolation : 'basic'
});

inrtia.to(20);
raf();

function raf() {
	if (!inrtia.stopped) {
		const value = inrtia.update();
		div.style.left = value + 'px' 
		// ... Do stuff with inrtia.value
	}
	window.requestAnimationFrame(raf);
}

Object Usage

var inrtia = new Inrtia({
	value : {x: 0, y: 0}
});

inrtia.to({x: 10, y: 20});

Array Usage

var inrtia = new Inrtia({
	value : [0, 0, 0]
});

inrtia.to([10, 20, 30]);

References

Constructor Options

Methods

Properties

0.2.3

5 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.0

7 years ago