Skip to content

Instantly share code, notes, and snippets.

@baptiste
Created November 18, 2020 19:50
Show Gist options
  • Select an option

  • Save baptiste/f1e98817b26db1417548403c8c739681 to your computer and use it in GitHub Desktop.

Select an option

Save baptiste/f1e98817b26db1417548403c8c739681 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" >
<defs>
<rect id="canvas" width="100%" height="100%" fill="white" />
<circle id="shape1" cx="100" cy="100" r="100" />
<rect id="shape2" x="0" y="100" width="200" height="100" fill="white" />
<mask id="half-circle">
<use href="#canvas" />
<use href="#shape1" />
<use href="#shape2" />
</mask>
</defs>
<g fill="grey"
transform="rotate(-10 50 100)
translate(50 45.5)">
<circle cx="100" cy="100" r="100" fill="#044B94" fill-opacity="0.4"/>
<ellipse cx="100" cy="100" rx="110" ry="50"
style="fill: none; stroke: cadetblue; stroke-width: 10;" mask="url(#half-circle)"/>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment