wordpress/2012/11/page-visibility-api-introduction-extend/">链接
用途
登录同步
这是我想的一个觉得蛮实用的应用。有如下场景:
页面可见性API实际应用
再进入该选项卡,视频又从刚才的地方继续播放了.
Page Visibility API
var isPageVisibilitySupport = (function() {
var support = false;
if (typeof window.screenX === "number") {
["webkit","moz","ms","o",""].forEach(function(prefix) {
if (support == false && document[prefix + (prefix? "H": "h") + "idden"] + "" !== "undefined") {
support = true;
}
});
}
return support;
})();
原文链接:https://www.f2er.com/note/421635.html