codecamp

window属性:ondeviceorientationabsolute

ondeviceorientationabsolute属性

注意:ondeviceorientationabsolute属性是非标准的。不要在面向Web的生产站点上使用它:它不适用于每个用户。实现之间也可能存在很大的不兼容性,并且行为在未来可能会发生变化。

ondeviceorientationabsolute属性表示deviceorientationabsolute事件的事件处理程序,其中包含有关绝对设备方向更改的信息。

ondeviceorientationabsolute属性语法

window.ondeviceorientationabsolute = function(event){...};
window.addEventListener('deviceorientationabsolute',function(event){...});

规范

此事件处理程序目前不是任何规范的一部分。

浏览器兼容性

我们正在将兼容性数据转换为机器可读的JSON格式。 

  • 电脑端
特征Chrome
Firefox(Gecko)Internet Explorer
Opera
Safari(WebKit)
基本支持支持:50.0不支持不支持不支持不支持 
  • 移动端

特征AndroidAndroid WebviewFirefox Mobile (Gecko)Firefox OSIE MobileOpera MobileSafari MobileChrome for Android
基本支持不支持支持:50.0不支持不支持不支持不支持不支持支持:50.0
window属性:ondeviceorientation
window属性:ondeviceproximity
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Fetch API官方文档指南

Fetch API方法

WindowOrWorkerGlobalScope执行者:window

window属性

WindowOrWorkerGlobalScope执行者:WorkerGlobalScope

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }