1# LoadingProgress 2 3用于显示加载动效的组件。 4 5> **说明:** 6> 7> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 8 9 10## 子组件 11 12无 13 14 15## 接口 16 17LoadingProgress() 18 19创建加载进展组件。 20 21从API version 9开始,该接口支持在ArkTS卡片中使用。 22 23## 属性 24 25| 名称 | 参数类型 | 描述 | 26| -------- | -------- | -------- | 27| color | [ResourceColor](ts-types.md#resourcecolor) | 设置加载进度条前景色。<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 | 28 29## 示例 30 31```ts 32// xxx.ets 33@Entry 34@Component 35struct LoadingProgressExample { 36 build() { 37 Column({ space: 5 }) { 38 Text('Orbital LoadingProgress ').fontSize(9).fontColor(0xCCCCCC).width('90%') 39 LoadingProgress() 40 .color(Color.Blue) 41 }.width('100%').margin({ top: 5 }) 42 } 43} 44``` 45 46![LoadingProgress](figures/LoadingProgress.gif) 47