SVG
clipPath
Suche…
Parameter
Parameter | Beschreibung |
---|---|
clipPathUnits | Das Koordinatensystem des Musters enthält entweder objectBoundingBox oder userSpaceOnUse |
Bemerkungen
Ausschnitt auf einem Kreispfad
<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>
Ursprüngliches Logo | Logo nach dem Clipping |
---|---|
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow