elm-animator
elm-animator copied to clipboard
A timeline-based animation engine for Elm
Hi Matthew, first of all, thanks for the great library. It is great fun to create animations with elm-animator. When I started using elm-animator in my application, it was just...
Sometimes `move` will return a value that's outside the bounds of what's been passed to `go` to update the model. This is illustrated in [this ellie](https://ellie-app.com/cqjGpdDyYb3a1); code reproduced below for...
Try as I might, I cannot seem to get CSS animation to work with SVG. As far as I can determine, this is a DOM namespace issue. (As in, HTML...
Hello :wave:! I noticed there were unused dependencies in your package. Here is a pull request to remove them. After this gets merged, I recommend publishing a new release, unless...
Sometimes `arrived` will return an old state. This is illustrated in [this ellie](https://ellie-app.com/bzP6PpfZ2h8a1). Code reproduced below for reference. Basically the program is randomly incrementing an `Int` every 50 - 150...
viewPage function did not use the 'content' parameter so the content was always the fixed "loremIpsum"
**Issue** `Animator.previous` always shows the initial state instead of the previous state. **Expected** `Animator.previous` to show the previous state. **Example Ellies** - [SSCCE](https://ellie-app.com/97w2pjrkSBLa1) - [Loading example does not show previous...
## Problem When using `Animator.immediate` in Safari Mac OS, the animation doesn't happen. In the debug, there is a history of events, animation is created in the DOM, but does...
I needed to change the scaleX and scaleY independently and it was not trivial to understand that is possible to create helpers like. I think either adding this as example...
I am not that familiar with the library but I wonder if there could be some way to differentiate these functions. `Animator.xy` ``` xy : Timeline state -> ( state...