首頁  >  文章  >  web前端  >  SVG製作簡單圖形的實例介紹

SVG製作簡單圖形的實例介紹

零下一度
零下一度原創
2017-06-28 10:33:171836瀏覽

圓形circle

<svg width="200" height="200" >
    <circle 
        cx="100" 
        cy="100" 
        r="80" 
        stroke="green" 
        stroke-width="4" 
        fill="none"/>
</svg>

矩形rect

<svg>
    <rect 
        x="10" 
        y="10" 
        rx="5" 
        ry="5" 
        width="150" 
        height="100" 
        stroke="red" 
        fill="none">
    </rect>
</svg>

橢圓形ellipse

<svg>
    <ellipse 
        cx="400" 
        cy="60" 
        rx="70" 
        ry="50" 
        stroke="red" 
        fill="none">
    </ellipse>
</svg>

線line

<svg>
    <line 
        x1="10" 
        y1="120" 
        x2="160" 
        y2="220" 
        stroke="red">
    </line>
</svg>

折線polyline

<svg>
    <line 
        x1="10" 
        y1="120" 
        x2="160" 
        y2="220" 
        stroke="red">
    </line>
</svg>

多邊形polygon

<svg>
    <polygon 
        points="250 120 
                300 220
                200 220"
        stroke="red"
        stroke-width="5"
        fill="yellow"
        transform="translate(150 0)">
    </polygon>
</svg>

路徑path

可用來路徑資料的指令
M = moveto
L = lineto
H = horizontal lineto
V = vertical lineto
C = curveto
S = smooth curveto
Q = quadratic Belzier curve
T = smooth quadratic Belzier curveto
A = elliptical Arc
Z = closepath

<svg>
    <path 
    d="M250 150 L150 350 L350 350 Z" />
</svg>

以上是SVG製作簡單圖形的實例介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn