SVG <ellipse>
SVG 椭圆 -<ellipse>
这<ellipse>元素用于创建椭圆。
椭圆与圆密切相关。不同之处在于椭圆的 x 和 y 半径彼此不同,而圆的 x 和 y 半径相等:
示例 1
下面的示例创建一个椭圆:
以下是 SVG 代码:
例子
<svg height="140" width="500">
<ellipse cx="200" cy="80" rx="100" ry="50"
样式="填充:黄色;描边:紫色;描边宽度:2" />
</svg>
亲自尝试 »
代码解释:
- cx 属性定义椭圆中心的 x 坐标
- cy 属性定义椭圆中心的 y 坐标
- rx 属性定义水平半径
- ry 属性定义垂直半径
示例 2
下面的示例创建了三个相互叠合的椭圆:
以下是 SVG 代码:
例子
<svg height="150" width="500">
<ellipse cx="240" cy="100" rx="220" ry="30" style="fill:purple" />
<ellipse cx="220" cy="70" rx="190" ry="20" style="fill:lime" />
<ellipse cx="210" cy="45" rx="170" ry="15"
style="fill:yellow" />
</svg>
亲自尝试 »
示例 3
下面的示例组合了两个椭圆(一个黄色,一个白色):
以下是 SVG 代码:
例子
<svg height="100" width="500">
<ellipse cx="240" cy="50" rx="220" ry="30" style="fill:yellow" />
<ellipse cx="220" cy="50" rx="190" ry="20" style="fill:white" />
</svg>
亲自尝试 »