码迷,mamicode.com
首页 > Web开发 > 详细

[HTML5] document.hidden

时间:2016-07-14 02:11:27      阅读:599      评论:0      收藏:0      [点我收藏+]

标签:

特殊说明:

通过document.hidden属性,可判断页面是否可见。 如果不可见,则document.hidden为true. 如果可见, 则为false。

但是, 如果该页面只是被其它窗口挡住, 而非最小化该页面。 则document.hidden仍然是false. 而不是不可见。

Example:

//startSimulation and pauseSimulation defined elsewhere
function handleVisibilityChange() {
  if (document.hidden) {
    pauseSimulation();
  } else  {
    startSimulation();
  }
}

document.addEventListener("visibilitychange", handleVisibilityChange, false);

 

see:

https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API

[HTML5] document.hidden

标签:

原文地址:http://www.cnblogs.com/mytianying/p/5668507.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!