-
Creator 版本: cocosCreator2.4.7
-
目标平台: creator模拟器和部分真机(比如oppo和华为平板)
-
重现方式:UI页面在做设置透明度渐入渐出
-
首个报错:无报错
-
之前哪个版本是正常的:
-
手机型号:
-
手机浏览器:
-
编辑器操作系统:
-
重现概率:必现
this.view.alpha = 0this.actTweener = fgui.GTween.to(0, 1, 2.35) .setTarget(this, (value) => { if (value <= 1 && value >= 0) { this.view.alpha = value; // Logger.log("渐入 this.view.alpha=", this.viewName, this.view.alpha) } }) .setEase(fgui.EaseType.QuadIn).onComplete(() => { this.winActDone = true this.view.alpha = 1 Logger.log("页面动作执行完成 actionIn winActDone", this.viewName) }, this);

