ts-basic-components-loadingprogress.md 821 字节
Newer Older
Y
yaoyuchi 已提交
1 2
# LoadingProgress

T
explain  
tianyu 已提交
3 4
用于显示加载动效的组件。

H
geshi  
HelloCrease 已提交
5
>  **说明:**
Y
yaoyuchi 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。


## 子组件




## 接口

LoadingProgress()

创建加载进展组件。

## 属性

G
gmy 已提交
22 23
| 名称 | 参数类型 | 描述 |
| -------- | -------- | -------- |
H
HelloCrease 已提交
24
| color | [ResourceColor](ts-types.md) | 设置加载进度条前景色。 |
Y
yaoyuchi 已提交
25 26 27

## 示例

H
geshi  
HelloCrease 已提交
28 29
```ts
// xxx.ets
Y
yaoyuchi 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42
@Entry
@Component
struct LoadingProgressExample {
  build() {
    Column({ space: 5 }) {
      Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('90%')
      LoadingProgress()
        .color(Color.Blue)
    }.width('100%').margin({ top: 5 })
  }
}
```

G
gmy 已提交
43
![zh-cn_image_000000111864201](figures/zh-cn_image_000000111864201.gif)