<ellipse>
元素用于绘制具有中心点的椭圆并给出两个半径。
声明
以下是<ellipse>
元素的语法声明。这里只显示了一些主要属性。
<ellipse
cx="x-axis co-ordinate"
cy="y-axis co-ordinate"
rx="length"
ry="length" >
</ellipse>
属性
编号 | 属性 | 描述 |
---|---|---|
1 | cx |
椭圆中心的x 轴坐标。 缺省值是0 。 |
2 | cy |
椭圆中心的y 轴坐标。 缺省值是0 。 |
3 | rx |
椭圆的x 轴半径。 |
4 | ry |
椭圆的y 轴半径。 |
示例
文件:testSVG.html -
<html>
<title>SVG椭圆形</title>
<body>
<h1>简单SVG椭圆形图片</h1>
<svg width="800" height="800">
<g>
<text x="0" y="15" fill="black" >Ellipse #1: Without opacity.</text>
<ellipse cx="100" cy="100" rx="90" ry="50"
stroke="black" stroke-width="3" fill="rgb(121,0,121)"></ellipse>
</g>
</svg>
</body>
</html>
在Chrome网络浏览器中打开testSVG.html。 您可以使用Chrome/Firefox/Opera直接查看SVG图像,无需任何插件。 Internet Explorer 9及更高版本还支持SVG图像呈现。
不透明度示例
<html>
<title>SVG椭圆形</title>
<body>
<h1>简单SVG椭圆形图片</h1>
<svg width="800" height="800">
<g>
<text x="0" y="15" fill="black" >Ellipse #2: With opacity </text>
<ellipse cx="100" cy="100" rx="90" ry="50"
style="fill:rgb(121,0,121);stroke-width:3;
stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"></ellipse>
</g>
</svg>
</body>
</html>
在浏览器中打开上述代码,显示效果如下 -