SVG <ellipse> 椭圆

<ellipse> 标签可用来创建椭圆。


<ellipse> 标签

<ellipse> 标签可用来创建椭圆。椭圆与圆很相似。不同之处在于椭圆有不同的 x 和 y 半径,而圆的 x 和 y 半径是相同的。

请把下面的代码拷贝到记事本,然后把文件保存为 "ellipse1.svg"。把此文件放入您的 web 目录:

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg width="100%" height="100%" version="1.1"
  5. xmlns="http://www.w3.org/2000/svg">
  6. <ellipse cx="141" cy="100" rx="140" ry="70"
  7. style="fill:rgb(200,100,50);
  8. stroke:rgb(0,0,100);stroke-width:2"/>
  9. </svg>
代码解释:
  • cx 属性定义圆点的 x 坐标
  • cy 属性定义圆点的 y 坐标
  • rx 属性定义水平半径
  • ry 属性定义垂直半径

效果如下:


下面的例子创建了三个累叠而上的椭圆:

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg width="100%" height="100%" version="1.1"
  5. xmlns="http://www.w3.org/2000/svg">
  6. <ellipse cx="141" cy="100" rx="140" ry="30"
  7. style="fill:purple"/>
  8. <ellipse cx="135" cy="70" rx="120" ry="20"
  9. style="fill:lime"/>
  10. <ellipse cx="130" cy="45" rx="100" ry="15"
  11. style="fill:yellow"/>
  12. </svg>

效果如下:


下面的例子组合了两个椭圆(一个黄的和一个白的):

  1. <?xml version="1.0" standalone="no"?>
  2. <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
  3. "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
  4. <svg width="100%" height="100%" version="1.1"
  5. xmlns="http://www.w3.org/2000/svg">
  6. <ellipse cx="141" cy="100" rx="140" ry="30"
  7. style="fill:yellow"/>
  8. <ellipse cx="112" cy="100" rx="110" ry="20"
  9. style="fill:white"/>
  10. </svg>

效果如下: