0.2.2 • Published 4 years ago

transition-engine v0.2.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Transition Engine

Make animations easily (ง ° ͜ ʖ °)ง

The API was inspired by the css animate, all property accepts is like the css properties. Designed to be the bare minimum necessary to create great animations.

Install

yarn add transition-engine

Simple usage

import animate from 'transition-engine'

const animation = animate({
  from: 0,
  to: 100,
  duration,
  transition ({ value }) {
    element.style.width = value + 'px'
  }
})

animation.start()

Properties

from: number
to: number
duration: number
iterationCount?: number
timingFunction?: EasingFunction
direction?: 'normal' | 'reverse' | 'alternate' | 'alternate-reverse'
transition: (Object: { progress: number; value: number }) => void
done?: () => void

from

Initial value parameter of the transition function.

to

Final value parameter of the transition function.

duration

Defines how long time an animation should take to complete.

iterationCount

Number of times the animation will run after the start.

timingFunction

It receives a function that handles the delta time to generate effects in the transition. Like it:

progress => --progress * progress * progress + 1

Learn more about easing functions.
But to facilitate our work, the project has a list of easing functions. Example:

import animate, { easingFunctions } from 'transition-engine'

const animation = animate({
  timingFunction: easingFunctions.easeOutQuad,
  ...
})

Easing functions avaiable.

direction

  • normal: The animation is played as normal (forwards). This is default
  • reverse: The animation is played in reverse direction (backwards)
  • alternate: The animation is played forwards first, then backwards
  • alternate-reverse: The animation is played backwards first, then forwards

transition

Function that receives an object with the value and progress keys. This function will run in a loop and these values will be increased according to the progress of the animation.

done

Is the simple callback of the animation.

start, stop, pause and continue

These are methods that can be called at any time during the animation, making it possible to pause() and continue() later.
You cannot resume the animation using continue() if you use stop().

const animation = animate({
  from: 0,
  to: 300,
  duration: 1000,
  transition ({ progress, value }) { ... }
})

animation.start()

setTimeout(() => {
  animation.pause()
  
  setTimeout(() => {
    animation.continue()
  }, 1000)
}, 500)

easingFunctions

  • linear
  • easeInQuad
  • easeOutQuad
  • easeInOutQuad
  • easeInCubic
  • easeOutCubic
  • easeInOutCubic
  • easeInQuart
  • easeOutQuart
  • easeInOutQuart
  • easeInQuint
  • easeOutQuint
  • easeInOutQuint
0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago