
- SVG 演示
- SVG - 載入器
- SVG - 對話方塊
- SVG - 圖示
- SVG - 時鐘
- SVG - 拖拽
- SVG - 關鍵點
- SVG - 地圖
- SVG - amChart
- SVG - 圖表
- SVG - 平面陰影
- SVG - 影像濾鏡
- SVG - 文字效果
- SVG - 帶 CSS 效果的文字
- SVG - 箭頭效果
- SVG - 品牌效果
- SVG - 果凍效果
- SVG - 漸變效果
- SVG - 趣味效果
- SVG - 滾動效果
- SVG - 幻燈片效果
- SVG - 標籤效果
- SVG - Raphael.js 效果
- SVG - Velocity.js 效果
- SVG - Walkway.js 效果
- SVG - zPath.js 效果
- SVG - Vague.js 效果
- SVG - 變換效果
- SVG - 全屏覆蓋效果
- SVG - Lazylinepainter.js 效果
- SVG - 演示遊戲
- SVG - 即時 SVG 廣告
- SVG 有用資源
- SVG - 常見問題解答
- SVG - 快速指南
- SVG - 有用資源
- SVG - 討論
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
廣告