1.0.1 • Published 5 years ago

animation-player-tween v1.0.1

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

animation-player-tween GitHub license npm version Build Status Codecov Coverage

The animation tween helper for animation-player

Table of Contents

  1. Installation
  2. Usage
  3. Documentation
  4. License

Instalation

npm install --save animation-player-tween

Usage

import { AnimationPlayerTween } from 'animation-player-tween';

const alpha = { x: 0, y: 0 };
const omega = { x: 100, y: 200 };

const tween = new AnimationPlayerTween(alpha).to(omega);

tween.update(0.1);
console.log(alpha); // { x: 10, y: 20 }

tween.update(0.5);
console.log(alpha); // { x: 50, y: 100 }

tween.update(1); 
console.log(alpha); // { x: 100, y: 200 }

Documentation

update(progress: number)

Allows to change the values of the properties of an object in certain time point

import { AnimationPlayerTween } from 'animation-player-tween';

const alpha = { x: 0 };
const omega = { x: 100 };

const tween = new AnimationPlayerTween(alpha)
  .to(omega);

tween.update(0.1);
console.log(alpha) // { x: 10 }

tween.update(0.2);
console.log(alpha) // { x: 20 }

tween.update(0.3);
console.log(alpha) // { x: 30 }

// ...

tween.update(1);
console.log(alpha) // { x: 100 }

to(omega: any)

Currently, it only supports objects with one level deep

Specify the object with properties that should be obtained at the end

import { AnimationPlayerTween } from 'animation-player-tween';

const alpha = { x: 0 };
const omega = { x: 100 };

const tween = new AnimationPlayerTween(alpha)
  .to(omega);

tween.update(1);
console.log(alpha) // { x: 100 } === omega

easing((k: number) => number)

Default value: Easing.Linear.None

Full list of Easing functions can be found here

import { AnimationPlayerTween, Easing } from 'animation-player-tween';

const alpha = { x: 0 };
const omega = { x: 100 };

const tween = new AnimationPlayerTween(alpha)
  .to(omega)
  .easing(Easing.Cubic.In); // <-- Set easing function

tween.update(0.1);
console.log(alpha); // { x: 0.10000000000000002 }

tween.update(0.5); 
console.log(alpha); // { x: 12.5 }

tween.update(1);
console.log(alpha); // { x: 100 }

interpolation((startValue: number, endValue: number, normalizedValue: number) => number)

Default value: Interpolation.Linear.

Full list of Interpolation functions can be found here

License

animation-player-tween is MIT licensed

1.0.1

5 years ago

1.0.1-beta.3

5 years ago

1.0.1-beta.2

5 years ago

1.0.1-beta.1

5 years ago

1.0.1-beta.0

5 years ago