新媒体运营札记

SVG基本图形、基本属性、基本操作

2020-02-10  本文已影响0人  David_Rao

基本图形和属性

  1. 基本图形
  1. 基本属性

1、<rect>矩形

2、<circle>圆形

3、<ellipse>椭圆

4、<line>直线

5、<polyline>折线

6、<polygon>多边形

7、基本属性

示例

<svg xmlns="http://www.w3.org/2000/svg">
    <rect
        x="10"
        y="10"
        rx="5"
        ry="5"
        width="150"
        height="100"
        stroke="red"
        fill="none">
    </rect>

    <circle
        cx="250"
        cy="60"
        r="50"
        stroke="red"
        fill="none">
    </circle>

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

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

    <polyline
        points="250 120
                300 220
                200 220"
        stroke="red"
        fill="none">
    </polyline>

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

基本操作

  1. 创建图形
  1. 添加图形
  1. 设置/获取属性
上一篇下一篇

猜你喜欢

热点阅读