rx - SVG: Scalable Vector Graphics 编辑
The rx
attribute defines a radius on the x-axis.
Two elements are using this attribute: <ellipse>
, and <rect>
html,body,svg { height:100% }
<svg viewBox="0 0 300 200" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="50" cy="50" rx="0" ry="25" />
<ellipse cx="150" cy="50" rx="25" ry="25" />
<ellipse cx="250" cy="50" rx="50" ry="25" />
<rect x="20" y="120" width="60" height="60" rx="0" ry="15"/>
<rect x="120" y="120" width="60" height="60" rx="15" ry="15"/>
<rect x="220" y="120" width="60" height="60" rx="150" ry="15"/>
</svg>
ellipse
For <ellipse>
, rx
defines the x-radius of the shape. With a value lower or equal to zero the ellipse won't be drawn at all.
Value | <length> | <percentage> | auto |
---|---|
Default value | auto |
Animatable | Yes |
Note: Starting with SVG2, rx
is a Geometry Property meaning this attribute can also be used as a CSS property for ellipses.
rect
For <rect>
, rx
defines the x-axis radius of the ellipse used to round off the corners of the rectangle.
The way the value of the rx
attribute is interpreted depend on both the ry
attribute and the width of the rectangle:
- If a properly specified value is provided for
rx
but not forry
(or the opposite), then the browser will consider the missing value equal to the defined one. - If neither
rx
norry
has a properly specified value, then the browser will draw a rectangle with square corners. - If
rx
is greater than half of the width of the rectangle, then the browser will consider the value forrx
as half of the width of the rectangle.
Value | <length> | <percentage> | auto |
---|---|
Default value | auto |
Animatable | Yes |
Note: Starting with SVG2, rx
is a Geometry Property meaning this attribute can also be used as a CSS property for rects.
Specifications
Specification | Status | Comment |
---|---|---|
Scalable Vector Graphics (SVG) 2 The definition of 'rx' in that specification. | Candidate Recommendation | Definition as a geometry property |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'rx' in that specification. | Recommendation | Initial definition for <ellipse> |
Scalable Vector Graphics (SVG) 1.1 (Second Edition) The definition of 'rx' in that specification. | Recommendation | Initial definition for <rect> |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论