SVG
clipPath
Sök…
parametrar
Parameter | Beskrivning |
---|---|
clipPathUnits | koordinatsystemet för mönsterinnehållet antingen objectBoundingBox eller userSpaceOnUse |
Anmärkningar
Klipp till en cirkelbana
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<clipPath id="circleClip">
<circle cx="50" cy="60" r="20" />
</clipPath>
</defs>
<image width="100" height="100" style="clip-path:url(#circleClip)" xlink:href="https://cdn.sstatic.net/Sites/stackoverflow/company/img/logos/so/so-icon.png" />
</svg>
Originallogotyp | Logotyp efter klippning |
---|---|
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow