kute.js
kute.js copied to clipboard
KUTE.js is a JavaScript animation engine for modern browsers.
I'm working on a React Component animated Transform that uses SVGPathCommander under the hood: ``` const AnimatedTransform = ({children,...transfProps }) => { if (window.isBrowser) { return children.map(path => { const...
i want to set the progress programatically but the `update` method doesn't work like i expected see example on [codepen](https://codepen.io/HannesGitH/pen/XWqEEzJ) is this an issue with kute itself or am i...
since the tween calculation is very slow, it would be nice if it was async, ran in another web-worker
```js let combinedtween = tween .chain(tween2) .chain(tween3) .chain(tween4) .chain(tween5); ``` wouldn't work instead one needs to apply the chaining 'back to front' à la ```js let combinedtween = tween .chain(tween2...
https://codepen.io/mailzwj/pen/VwJLado Like this pen. The tweenOption repeatDelday didn't work.
I was not able to plug-in a new Component/Animation at run-time without building my own distribution because the Kute Execution Context (KEC) is not exported in the KUTE namespace. According...
This is great work, btw. Been a huge fan of BSN since like 2018 or something. In your kute docs you link to polyfill.io here: https://thednp.github.io/kute.js/index.html In 2024 there was...