确定用户是否单击了主页按钮/应用程序未激活[Firefox OS]

时间:2013-11-21 06:30:31

标签: javascript firefox firefox-os

有没有办法确定用户是否在Firefox OS中点击了主页按钮/应用程序未激活?我使用window.onblur,是的它可以工作但是当我点击顶部的面板时它总是会触发,即使我的应用程序仍然在屏幕/活动上绘制。我顺便使用Firefox OS Simulator。感谢

1 个答案:

答案 0 :(得分:4)

这是您需要的代码:

document.addEventListener("visibilitychange", function () {
    if (document.hidden) {
        console.log("App is hidden");
    }
    else {
        console.log("App has focus");
    }
});