clipPathUnits - SVG: Scalable Vector Graphics 编辑
The clipPathUnits
attribute indicates which coordinate system to use for the contents of the <clipPath>
element.
Only one element is using this attribute: <clipPath>
html,body,svg { height:100% }
<svg viewBox="0 0 100 100">
<clipPath id="myClip1" clipPathUnits="userSpaceOnUse">
<circle cx="50" cy="50" r="35" />
</clipPath>
<clipPath id="myClip2" clipPathUnits="objectBoundingBox">
<circle cx=".5" cy=".5" r=".35" />
</clipPath>
<!-- Some reference rect to materialized to clip path -->
<rect id="r1" x="0" y="0" width="45" height="45" />
<rect id="r2" x="0" y="55" width="45" height="45" />
<rect id="r3" x="55" y="55" width="45" height="45" />
<rect id="r4" x="55" y="0" width="45" height="45" />
<!-- The first 3 rect are clipped with useSpaceOnUse units -->
<use clip-path="url(#myClip1)" xlink:href="#r1" fill="red" />
<use clip-path="url(#myClip1)" xlink:href="#r2" fill="red" />
<use clip-path="url(#myClip1)" xlink:href="#r3" fill="red" />
<!-- The last rect is clipped with objectBoundingBox units -->
<use clip-path="url(#myClip2)" xlink:href="#r4" fill="red" />
</svg>
clipPath
For <clipPath>
, clipPathUnits
define the coordinate system in use for the content of the element.
Value | userSpaceOnUse | objectBoundingBox |
---|---|
Default value | userSpaceOnUse |
Animatable | Yes |
- userSpaceOnUse
- This value indicates that all coordinates inside the
<clipPath>
element refer to the user coordinate system as defined when the clipping path was created. - objectBoundingBox
- This value indicates that all coordinates inside the
<clipPath>
element are relative to the bounding box of the element the clipping path is applied to. It means that the origin of the coordinate system is the top left corner of the object bounding box and the width and height of the object bounding box are considered to have a length of 1 unit value.
Specifications
Specification | Status | Comment |
---|---|---|
CSS Masking Module Level 1 The definition of 'clipPathUnits' in that specification. | Candidate Recommendation | |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'clipPathUnits' in that specification. | Recommendation | Initial definition |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论