Not sure what you mean exactly. Have you had a look at the Elm Architecture tutorial? It actually uses an example where it renders a gif: http://guide.elm-lang.org/architecture/effects/http.html
If that's what you want, Html.img is the function you are looking for: http://package.elm-lang.org/packages/evancz/elm-html/4.0.1/Html#img A simple example: import Html exposing (img) import Html.Attributes exposing (src) main = img [ src "gif.gif" ] [ ] On Wednesday, June 22, 2016 at 5:21:22 AM UTC+2, [email protected] wrote: > > How can I make a .gif? > -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
