SVG - Poligono
L'elemento <polygon> viene utilizzato per disegnare una forma chiusa costituita da linee rette collegate.
Dichiarazione
Di seguito è riportata la dichiarazione della sintassi di <polygon>elemento. Abbiamo mostrato solo gli attributi principali.
<polygon
points="list of points" >
</polygon>
Attributi
Sr.No. | Nome e descrizione |
---|---|
1 | points - Elenco dei punti per comporre un poligono. |
Esempio
testSVG.htm<html>
<title>SVG Polygon</title>
<body>
<h1>Sample SVG Polygon Image</h1>
<svg width="800" height="800">
<g>
<text x="0" y="15" fill="black" >Polygon #1: Without opacity.</text>
<polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
stroke="black" stroke-width="3" fill="rgb(121,0,121)"></polygon>
</g>
</svg>
</body>
</html>
Produzione
Apri textSVG.htm nel browser web Chrome. Puoi utilizzare Chrome / Firefox / Opera per visualizzare l'immagine SVG direttamente senza alcun plug-in. Internet Explorer 9 e versioni successive supportano anche il rendering di immagini SVG.
Poligono con opacità
<html>
<title>SVG Polygon</title>
<body>
<h1>Sample SVG Polygon Image</h1>
<svg width="800" height="800">
<g>
<text x="0" y="15" fill="black" >Polygon #2: With opacity </text>
<polygon points="150,75 258,137.5 258,262.5 150,325 42,262.6 42,137.5"
style="fill:rgb(121,0,121);stroke-width:3;
stroke:rgb(0,0,0);stroke-opacity:0.5;opacity:0.5"></polygon>
</g>
</svg>
</body>
</html>
Produzione
Apri textSVG.htm nel browser web Chrome. Puoi utilizzare Chrome / Firefox / Opera per visualizzare l'immagine SVG direttamente senza alcun plug-in. Internet Explorer 9 e versioni successive supportano anche il rendering di immagini SVG.