SVG
clipPath
サーチ…
パラメーター
パラメータ | 説明 |
---|---|
clipPathUnits | パターン内容ObjectBoundingBoxで又はUserSpaceOnUseでいずれかの座標系 |
備考
サークルパスへのクリッピング
<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>
元のロゴ | クリッピング後のロゴ |
---|---|
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow