SVG - Polígono

O elemento <polygon> é usado para desenhar uma forma fechada que consiste em linhas retas conectadas.

Declaração

A seguir está a declaração de sintaxe de <polygon>elemento. Mostramos apenas os atributos principais.

<polygon
   points="list of points"  > 
</polygon>

Atributos

Sr. Não. Nome e Descrição
1 points - Lista de pontos para compor um polígono.

Exemplo

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>

Resultado

Abra textSVG.htm no navegador Chrome. Você pode usar o Chrome / Firefox / Opera para visualizar a imagem SVG diretamente sem qualquer plugin. O Internet Explorer 9 e superior também oferece suporte à renderização de imagens SVG.

Polígono com opacidade

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

Resultado

Abra textSVG.htm no navegador Chrome. Você pode usar o Chrome / Firefox / Opera para visualizar a imagem SVG diretamente sem qualquer plugin. O Internet Explorer 9 e superior também oferece suporte à renderização de imagens SVG.