中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

SVG 曲線


SVG 曲線 - <polyline>

實(shí)例 1

<polyline> 元素是用于創(chuàng)建任何只有直線的形狀:

Sorry, your browser does not support inline SVG.

下面是SVG代碼:

實(shí)例

<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>

運(yùn)行代碼 ?

實(shí)例 2

只有直線的另一個(gè)例子:

Sorry, your browser does not support inline SVG.

下面是SVG代碼:

實(shí)例

<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <polyline points="0,40 40,40 40,80 80,80 80,120 120,120 120,160" style="fill:white;stroke:red;stroke-width:4" /> </svg>

運(yùn)行代碼 ?