I´m playing around with elm-ui
and I´m trying to achieve a (in my opinion) easy task but I´m struggling.
I would like to display a round image like we all know it from contact forms on iOS or several other platforms.
As far as I know there are two libraries called elm-ui
:
- mdgriffith/elm-ui
- gdotdesign/elm-ui
I´m using the first one.
I was playing around with Element.Border
but that just added a border in the background.
import Element exposing (image)
import Element.Border as Border
image
[ Border.rounded 50
, Border.width 5
]
{ src = "img.png"
, description = "Some text..."
}
I also tried to use a svg
to display a circle and fill it with the image as background. But now I struggled by setting the background to anything else than a color.
import Element exposing (html)
import Svg exposing (svg)
import Svg.Attributes exposing (cx, cy, fill, height, r, width)
html
(svg
[ width "100"
, height "100"
]
[ circle
[ cx "50"
, cy "50"
, r "50"
, fill "orange" -- That´s where I would like to insert my image.
]
[]
]
)
I´m coming from the .Net world and there with WPF´s XAML I would use the svg as an opacity mask on the image.
How can I achieve that in ELM?
Thank you for your help!