Skip to content

Instantly share code, notes, and snippets.

@FelixAkk
Created December 28, 2015 13:52
Show Gist options
  • Select an option

  • Save FelixAkk/f102be8836eb5ab853e3 to your computer and use it in GitHub Desktop.

Select an option

Save FelixAkk/f102be8836eb5ab853e3 to your computer and use it in GitHub Desktop.
SVG masking support minimal testcase
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<symbol id="mySymbol" viewBox="0 0 40 40">
<defs>
<circle id="disk" cx="20" cy="20" r="20"/>
</defs>
<mask id="circular-mask" fill="white">
<use xlink:href="#disk"/>
</mask>
<use fill="#7E57C2" xlink:href="#disk"/>
<path d="M20,30 30,20 40,30 40,40 30,40 Z" fill-opacity="0.3" fill="#000000" mask="url(#circular-mask)"/>
</symbol>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment