[elm-discuss] Re: Can I use css animations normally in elm?

2016-10-15 Thread Wouter In t Velt
Interesting! Having only discrete state in elm, with animations in CSS will definitely keep code simpler. -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[elm-discuss] Re: Can I use css animations normally in elm?

2016-10-15 Thread Simone Vittori
I think it's worth mentioning your Elm code can be totally independent from any animation done in an external stylesheet. See this style for example: https://github.com/simonewebdesign/elm-double-folding-pattern/blob/a27de84ba14f46f46d4d3878b233dcd32b31d13d/style.css#L357 The animation starts

[elm-discuss] Re: Can I use css animations normally in elm?

2016-10-14 Thread Aislan de Sousa Maia
Some repo to see this more advanced animations with CSS + Elm ?? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+unsubscr...@googlegroups.com. For

[elm-discuss] Re: Can I use css animations normally in elm?

2016-10-14 Thread Wouter In t Velt
I have some experience in this, and for basic stuff you can use css. And it keeps your elm code nicely focused on state, without complexity of having to manage state transitions inside state. e.g. for displaying and hiding a sidebar-menu which slides in from the left, or a dropdown-menu,

[elm-discuss] Re: Can I use css animations normally in elm?

2016-10-14 Thread Keith Lazuka
I don't have any experience with this, but the TodoMVC example uses a tiny bit of CSS animations: See the '.todo-list li label' selector in 'style.css' at https://github.com/evancz/elm-todomvc -keith On Thursday, October 13, 2016 at 10:03:34 AM UTC-7, Timothy Williams wrote: > > Whenever I