elm-examples/basic/display/Opacity.elm
Yann Esposito (Yogsototh) 82a76207ec added some examples
2014-12-20 21:45:45 +01:00

10 lines
301 B
Elm

import Graphics.Element (..)
main : Element
main = let imgWidth = 600
imgHeight = 430
url = "http://placekitten.com/g/" ++
toString imgWidth ++ "/" ++
toString imgHeight
in
opacity 0.5 (fittedImage 200 200 url)