js-components-svg.md 2.2 KB
Newer Older
Z
zengyawen 已提交
1
# svg
Z
zengyawen 已提交
2 3 4 5

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


Z
zengyawen 已提交
6 7 8 9 10 11
> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> - 该组件从API version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
> 
> - svg父组件或者svg组件需要定义宽高值,否则不进行绘制。

## 权限列表
Z
zengyawen 已提交
12 13 14



Z
zengyawen 已提交
15 16

## 子组件
Z
zengyawen 已提交
17 18 19

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

Z
zengyawen 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

## 属性

支持Svg组件[通用属性](../arkui-js/js-components-svg-common-attributes.md)和以下属性,设置的通用属性会传递给子组件。

| 名称 | 类型 | 默认值 | 必填 | 描述 |
| -------- | -------- | -------- | -------- | -------- |
| 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的宽高不一致,会以中心对齐进行缩放。 |


## 示例
Z
zengyawen 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

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


Z
zengyawen 已提交
56
![zh-cn_image_0000001173164789](figures/zh-cn_image_0000001173164789.png)