Releases: jeremenichelli/phena
Releases 路 jeremenichelli/phena
Release list
v2.1.1
v2.1.0
2.1.0 (2019-06-07)
Features
- Initial config now supports initial
delay - You can pass an
onCompletemethod to be called when tweening has finished - Multiple values by tween,
fromandtocan now be arrays of values
v2.0.0
2.0.0 (2019-05-31)
BREAKING CHANGES
- Now the library exports a class you need to instance before tweening.
import {Tween} from 'phena'
const animation = new Tween({ from: 0, to: 5, duration: 500, paused: true })
animation.start()Features
- You can now cancel a tweening by running
.cancel()on theTweeninstance - If you passed
paused: truetweening won't start at instantiation time, call.start()to kick off later
v1.0.1
1.0.1 (2019-05-30)
Improvements
- Update test dependencies
- Add JSDoc comments to code
- Add code formatting and commit message linting
- Update README with contribution details
Bug Fixes
- Call
easeon proportional time
v1.0.0
1.0.0 (2018-10-11)
Features
- Initial package release