svg

基础容器,主要作为svg的根节点使用,也可以在svg中嵌套使用。

说明: 从API Version 7 开始支持。 约束条件:svg父组件或者svg组件需要定义宽高值,否则不进行绘制。

权限列表

子组件

支持svg、rect、circle、ellipse、path、line、polygon、polyline、text、animate、animateTransform。

属性

支持所列的Svg组件通用属性和以下表格的属性,设置的通用属性会传递给子组件。

名称

类型

默认值

必填

描述

id

string

-

组件的唯一标识。

width

<length>|<percentage>

-

设置组件的宽度

height

<length>|<percentage>

-

设置组件的高度

x

<length>|<percentage>

-

设置当前svg的x轴坐标,根svg节点无效

y

<length>|<percentage>

  

设置当前svg的y轴坐标,根svg节点无效

viewBox

string

-

设置当前svg的视口。支持的格式为<number number number number>,4个参数分别表示min-x, min-y, width and height,viewBox的宽高和svg的宽高不一致,会以中心对齐进行缩放。

示例

<!-- xxx.hml -->
<div class="container">
    <svg width="400" height="400">
        <svg width="200" height="200" viewBox="0 0 100 100">
            <rect x="10" y="10" width="80" height="80" fill="#00FF00"></rect>
        </svg>
        <rect x="10" y="10" width="80" height="80" fill="red" ></rect>
        <svg x="0" y="0" width="200" height="200" viewBox="0 0 200 200">
            <rect x="10" y="10" width="80" height="80" fill="red"></rect>
        </svg>
        <svg x="0" y="0" width="200" height="200" viewBox="0 0 400 400">
            <rect x="10" y="10" width="80" height="80" fill="blue"></rect>
        </svg>
    </svg>
</div>