SVG - 直线



<line> 元素用于绘制具有起点和终点的直线。

声明

以下是 <line> 元素的语法声明。我们只展示了主要属性。

<line
   x1="x-axis co-ordinate"
   y1="y-axis co-ordinate"
   
   x2="x-axis co-ordinate" 
   y2="y-axis co-ordinate" >    
</line>

属性

序号 名称及描述
1 x1 − 起点的 x 轴坐标。默认为 0。
2 y1 − 起点的 y 轴坐标。默认为 0。
3 x2 − 终点的 x 轴坐标。默认为 0。
4 y2 − 终点的 y 轴坐标。默认为 0。

示例

testSVG.htm
<html>
   <title>SVG Line</title>
   <body>
      
      <h1>Sample SVG Line Image</h1>
      
      <svg width="800" height="800">
         <g>
            <text x="0" y="15" fill="black" >Line #1: Without opacity.</text>
            
            <line x1="20" y1="20" x2="150" y2="150" 
            stroke="black" stroke-width="3" fill="rgb(121,0,121)"></line> 
         </g> 
      </svg>
   
   </body>
</html>

输出

在 Chrome 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本也支持 SVG 图像渲染。

带有透明度的直线

<html>
   <title>SVG Line</title>
   <body>
      
      <h1>Sam>le SVG Line Image</h1>
      
      <svg width="800" height="800"> 
         <g>
            <text x="0" y="15" fill="black" >Line #2: With opacity </text>
            
            <line x1="20" y1="20" x2="150" y2="150"  
            style="fill:rgb(121,0,121);stroke-width:3;
            stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"></line> 
         </g>
      </svg>
   
   </body>
</html>

输出

在 Chrome 浏览器中打开 textSVG.htm。您可以使用 Chrome/Firefox/Opera 直接查看 SVG 图像,无需任何插件。Internet Explorer 9 及更高版本也支持 SVG 图像渲染。

svg_shapes.htm
广告