SVG 是使用 XML 來描述二維圖形和繪圖程式的語言。
SVG <polyline> 語法
<polyline> 元素是用來建立任何只有直線的形狀
SVG <polyline> 範例
<!DOCTYPE html> <html> <body> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <polyline points="20,20 40,25 60,40 80,120 120,140 200,180" style="fill:none;stroke:black;stroke-width:3"...> </svg> </body> </html>
運行實例»
點擊"運行實例" 按鈕查看線上實例