形狀裁剪
用于對組件進行裁剪、遮罩處理。
說明:
開發(fā)前請熟悉鴻蒙開發(fā)指導文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
從API Version 7開始支持。后續(xù)版本如有新增內容,則采用上角標單獨標記該內容的起始版本。
屬性
名稱 | 參數(shù)類型 | 描述 |
---|---|---|
clip | [Circle] | [Ellipse] |
mask | [Circle] | [Ellipse] |
ProgressMask10+
ProgressMask設置遮罩的進度、最大值和遮罩顏色。
constructor10+
constructor(value: number, total: number, color: ResourceColor)
構造ProgressMask對象。
參數(shù):
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
value | number | 是 | 進度遮罩的當前值。 |
total | number | 是 | 進度遮罩的最大值。 |
color | [ResourceColor] | 是 | 進度遮罩的顏色。 |
updateProgress10+
updateProgress(value: number): void
更新進度遮罩的進度值。
參數(shù):
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
value | number | 是 | 進度遮罩的當前值。 |
updateColor10+
updateColor(value: ResourceColor): void
更新進度遮罩的顏色。
參數(shù):
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
value | [ResourceColor] | 是 | 進度遮罩的顏色。 |
示例
示例1
// xxx.ets
@Entry
@Component
struct ClipAndMaskExample {
build() {
Column({ space: 15 }) {
Text('clip').fontSize(12).width('75%').fontColor('#DCDCDC')
Row() {
Image($r('app.media.testImg')).width('500px').height('280px')
}
.clip(true) // 如這里不設置clip為true,則Row組件的圓角不會限制其中的Image組件,Image組件的四個角會超出Row
.borderRadius(20)
// 用一個280px直徑的圓對圖片進行裁剪
Image($r('app.media.testImg'))
.clip(new Circle({ width: '280px', height: '280px' }))
.width('500px').height('280px')
Text('mask').fontSize(12).width('75%').fontColor('#DCDCDC')
// 給圖片添加了一個500px*280px的方形遮罩
Image($r('app.media.testImg'))
.mask(new Rect({ width: '500px', height: '280px' }).fill(Color.Gray))
.width('500px').height('280px')
// 給圖片添加了一個280px*280px的圓形遮罩
Image($r('app.media.testImg'))
.mask(new Circle({ width: '280px', height: '280px' }).fill(Color.Gray))
.width('500px').height('280px')
}
.width('100%')
.margin({ top: 15 })
}
}
示例2
@Entry
@Component
struct ProgressMaskExample {
@State progressflag1: boolean = true;
@State color: Color = 0x01006CDE;
@State value: number = 10.0;
@State progress: ProgressMask = new ProgressMask(10.0, 100.0, Color.Gray);
build() {
Column({ space: 15 }) {
Text('progress mask').fontSize(12).width('75%').fontColor('#DCDCDC')
// 給圖片添加了一個280px*280px的進度遮罩
Image($r('app.media.testImg'))
.width('500px').height('280px')
.mask(this.progress)
.animation({
duration: 2000, // 動畫時長
curve: Curve.Linear, // 動畫曲線
delay: 0, // 動畫延遲
iterations: 1, // 播放次數(shù)
playMode: PlayMode.Normal // 動畫模式
}) // 對Button組件的寬高屬性進行動畫配置
// 更新進度遮罩的進度值
Button('updateProgress')
.onClick((event: ClickEvent) = > {
this.value += 10;
this.progress.updateProgress(this.value);
}).width(200).height(50).margin(20)
// 更新進度遮罩的顏色
Button('updateColor')
.onClick((event: ClickEvent) = > {
if (this.progressflag1) {
this.progress.updateColor(0x9fff0000);
} else {
this.progress.updateColor(0x9f0000ff);
}
this.progressflag1 = !this.progressflag1
}).width(200).height(50).margin(20)
// 恢復進度遮罩
Button('click reset!')
.onClick((event: ClickEvent) = > {
this.value = 0;
this.progress.updateProgress(this.value);
}).width(200).height(50).margin(20)
}
.width('100%')
.margin({ top: 15 })
}
}
審核編輯 黃宇
-
鴻蒙
+關注
關注
57文章
2339瀏覽量
42805
發(fā)布評論請先 登錄
相關推薦
評論