2.1.0 • Published 5 years ago
tweening-js v2.1.0
tweening-js
Javascript tweening library which support promise interface
and use requestAnimationFrame
written in typescript.
tweening-js does not directly handle DOM elements, making it compatible with any frontend framework such as React, Vue, Angular.
Install
$ npm install tweening-js
## or
$ yarn add tweening-js
Usage
import { tween } from './tweening-js'
const step = (n: number) => console.log('draw: ' + n)
tween({ from: -200, to: -100, step, duration: 50, done: () => {
console.log('complete1')
promiseWay()
}})
const promiseWay = () => {
tween({ from: 0, to: 100, step, duration: 50 }).promise().then( () => {
console.log('----- complete2')
asyncFunction()
})
}
const asyncFunction = async () => {
await tween({ from: 0, to: 100, step, duration: 50 }).promise()
console.log('----- complete3')
await tween({ from: 200, to: 300, step, duration: 50 }).promise()
console.log('----- complete4')
}
const concurrent = async () => {
await Promise.all([
tween({ from: 0, to: 100, step, duration: 50 }).promise(),
tween({ from: 200, to: 300, step, duration: 50 }).promise(),
])
console.log('----- complete5')
}
easyFunctions
import { tween, easeFunctions } from './tweening-js'
const {
linear, inQuad, outQuad, inOutQuad, inCube, outCube, inOutCube, inQuart,
outQuart, inOutQuart, inQuint, outQuint, inOutQuint, inSine, outSine, inOutSine,
inExpo, outExpo, inOutExpo, inCirc, outCirc, inOutCirc, inBack, outBack,
inOutBack, inBounce, outBounce, inOutBounce,
} = easeFunctions
const step = (n: number) => console.log('draw: ' + n)
tween({ from: -200, to: -100, step, easeFunction: outQuint })
Default easy function is outQuad
Use with React
// TODO
Development
Build:
$ yarn build
Test:
$ yarn test
Special thanks & References
2.1.0
5 years ago
2.0.1
5 years ago
2.0.0
5 years ago
2.0.0-rc.3
5 years ago
0.0.1-security
5 years ago
2.0.0-rc.2
5 years ago