easy-bezier-animation
v0.0.5
Published
```bash npm i bezier-animation ```
Downloads
1
Maintainers
Readme
bezier-animation
Install
npm i bezier-animation
Usage
ES Module
import BezierAnimation from "easy-bezier-animation";
const box = new BezierAnimation({
from: {
top: 0,
},
to: {
top: 200,
},
duration: 2000,
onUpdate: (value) => {
document.getElementById("box").style.top = value.top + "px";
},
});
box.start();