SVG線 - <行>
在<line>元素被用來創建一個行:
下面是SVG代碼:
例
<svg height="210" width="500">
<line x1="0" y1="0" x2="200" y2="200"
style="stroke:rgb(255,0,0);stroke-width:2" />
</svg>
試一試» Code explanation:
- 所述x1屬性定義在x軸的線的開始
- 的y1屬性定義在y軸的線的開始
- 的x2屬性定義該行上的X軸的端
- 的y2屬性定義在y軸的線的端