使用svg画一个三角形

    <svg>
      <polygon points="50,0 0,100 100,100"></polygon>
    </svg>

50,0表示:x轴,y轴 不可以使用fill=“none”
效果图:
image.png

非实现/填充的三角形

    <svg>
      <polyline points="50,0 0,100 100,100 0,-100" fill="none" stroke="#f00" stroke-width="2"></polyline>
    </svg>

image.png


hanbo_bo
13 声望1 粉丝