mdgriffith / elm-ui

What if you never had to write CSS again?
https://package.elm-lang.org/packages/mdgriffith/elm-ui/latest/
BSD 3-Clause "New" or "Revised" License
1.35k stars 110 forks source link

Image loading="lazy" #307

Open pravdomil opened 3 years ago

pravdomil commented 3 years ago

https://caniuse.com/loading-lazy-attr

Looks valuable!

NduatiK commented 3 years ago

Just use Html.Attributes

image [ htmlAttribute (Html.Attributes.attributes "loading" "true")]
    -> { src : "..."
       , description : "..."
       }