Transitioning from one value to another.
"Why reinvent the wheel?"
Sometimes, all you need is an extremely lightweight package to transition from one value to another. It requires no bindings to DOM elements or framework-specific code. In such cases, popular animation libraries may come with additional features that are not necessary.
pnpm install from-to.js
animate(from: Value, to: Value, options?: Options<Value>) => Controls
It supports transition animations for both numerical values and colors.
You can use animate(0, 100)
to transition numerical values or animate([0, 0, 0], [100, 200, 300])
to transition arrays of numerical values. For transitioning colors, you can use animate('#000', '#fff')
.
The transition type can be either tween
or spring
. The default transition type is tween
.
animate('#FF0000ff', '#8B00FFff', {
type: 'tween',
ease: 'ease',
duration: 3,
})
ease: ease
| liner
| easeIn
| easeOut
| easeInOut
It can also handle transition animations for arrays in the format [number, number, number, number], allowing you to customize the transition curve.
duration: number
The transition duration is specified in seconds.
animate(0, 200, {
type: 'spring',
stiffness: 100,
damping: 10,
mass: 1,
})
stiffness: number
The stiffness parameter defines the rigidity or intensity of the spring effect. A higher stiffness value will produce a more pronounced and rapid transition.
The default value is set to 100.
damping: number
The damping parameter controls the resistance or smoothness of the spring's movement. A higher damping value will result in a slower and smoother transition, while a lower damping value will allow for more oscillations.
The default value is set to 10.
mass: number
The mass parameter affects the inertia of the animation. A higher mass value results in slower acceleration and deceleration, creating a smoother and more gradual transition.
The default value is set to 1.
The animation state will be updated through Lifecycles callbacks.
animate([0, 0], [200, 500], {
onPlay() {
// when the animation starts playing for the first time.
},
onUpdate([x, y]) {
// You can update DOM state or perform similar actions here
// every time the animation updates.
element.style.transform = `translate(${x}px,${y}px)`
},
onComplete() {
// when the animation completes its execution.
// If loop is set to true, it will be triggered after each iteration.
},
onStop() {
// When the animation is stopped
},
})
const animation = animate(0, 200)
animation: thenable
A thenable object can be invoked using the then method, just like a Promise, and can also be used with await.
await animation
console.log('animation end')
animation.play: function
animation.play()
If autoplay is set to false, you need to call animation.play() to start the animation. When the animation is paused, calling play() will resume it. If the animation has ended or been canceled, calling play() will restart the animation.
animation.pause: funciton
animation.pause()
Pause the animation.
animation.stop: funciton
animation.stop()
Stop the animation.
animation.cancel()
Cancel the animation, Unlike the stop() method, canceling the animation will pass the initial values to the onUpdate callback.
The algorithm for the spring animation in this library is sourced from the renowned animation library, framer-motion. I have utilized its algorithm in the code for this library.
Made with ❤️🩹 in Chengdu