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" style="fill:yellow;stroke:purple;stroke-width: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>