[]ANDORID 切后台 怎么监听啊
ANDORID 切后台 怎么监听啊?
Laya.stage.on(Laya.Event.BLUR, this, this._on_blur);
Laya.stage.on(Laya.Event.FOCUS, this, this._on_focus);这个没有用啊。
Laya.stage.on(Laya.Event.BLUR, this, this._on_blur);
Laya.stage.on(Laya.Event.FOCUS, this, this._on_focus);这个没有用啊。
没有找到相关结果
已邀请:
要回复问题请先登录
4 个回复
w1114367261
赞同来自:
blur是 浏览器或者当前标签被切换到后台后调度
Kerry
赞同来自:
IdeaEcho
赞同来自:
document.addEventListener("visibilitychange", e => {原文:js检测浏览器切换到后台的方案if (document.hidden) {
this.onBlur()
} else {
this.onFocus()
}
});
古特软件
赞同来自: