elm-anima
elm-anima copied to clipboard
An approach to animations within the Elm architecture
Results
2
elm-anima issues
Sort by
recently updated
recently updated
newest added
Caching
1
Pure functions can use caching to reduce computational load. In our case, we have an expensive automaton that we generally expect to be a pure function - the `viewer`. We...
thinking
When a system uses animations, you want it to respond to user input at any time. So it looks like caching (see #1) may be near impossible. However, most applications...
thinking