|
@@ -71,16 +71,11 @@ export class MailDetail extends BaseView {
|
|
|
this.getTips.getComponent(Label).string = StringUtil.getLanguageData('附件已领取');
|
|
|
this.getBtnTx.string = StringUtil.getLanguageData('领取附件');
|
|
|
this.delBtnTx.string = StringUtil.getLanguageData('删除邮件');
|
|
|
- let twinkle = (node)=>{
|
|
|
- tween(this.closeTips.getComponent(UIOpacity)).to(1.2, { opacity: 10 })
|
|
|
- .call(() => {
|
|
|
- tween(this.closeTips.getComponent(UIOpacity)).to(1, { opacity: 255 })
|
|
|
- .call(() => {
|
|
|
- twinkle(this.closeTips);
|
|
|
- }).start()
|
|
|
- }).start()
|
|
|
- }
|
|
|
- twinkle(this.closeTips);
|
|
|
+ tween(this.closeTips.getComponent(UIOpacity))
|
|
|
+ .to(1.2, { opacity: 10 })
|
|
|
+ .to(1, { opacity: 255 })
|
|
|
+ .repeatForever()
|
|
|
+ .start()
|
|
|
}
|
|
|
|
|
|
onDestroy() {
|