Skip to main content

setOpacityForAll 设置全部动画的不透明度

setOpacityForAll

类型: MethodDeclaration

所属类: Actor

定义位置: actor.ts

描述

设置全部动画的不透明度

参数 opacity: 不透明度[0-1]

参数 easingId: 过渡曲线ID

参数 duration: 持续时间(毫秒)

参数

参数名类型描述默认值
opacitynumber--
easingIdstring-""
durationnumber-n0

返回值

类型: void

源代码

位置: 第 930 行

public setOpacityForAll(
opacity: number,
easingId: string = "",
duration: number = 0
): void {
for (const animation of this.animationManager.list) {
const id = animation.key + "-opacity";
animation.setOpacity(id, this.updaters, opacity, easingId, duration);
}
}

文档生成时间:2026/2/1 16:51:38