本篇内容介绍了“JavaScript如何实现移动端横竖屏检测”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
在html中分别引用横屏和竖屏样式
<!-- 引用竖屏的CSS文件 portrait.css --> <link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css" rel="external nofollow" > <!-- 引用横屏的CSS文件 landscape.css --> <link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css" rel="external nofollow" >
css中通过媒体查询方法来判断是横屏还是竖屏
/* 竖屏 */ @media screen and (orientation:portrait) { /* 这里写竖屏样式 */ } /* 横屏 */ @media screen and (orientation:landscape) { /* 这里写横屏样式 */ }
【1】orientationChange事件
苹果公司为移动 Safari中添加了 orientationchange 事件,orientationchange 事件在设备的纵横方向改变时触发
window.addEventListener("orientationchange",function(){ alert(window.orientation); });
【2】orientation属性
window.orientation 获取手机的横竖的状态,window.orientation 属性中有 4个值:0和180的时候为竖屏(180为倒过来的竖屏),90和-90时为横屏(-90为倒过来的横屏)
0 表示肖像模式,90 表示向左旋转的横向模式(“主屏幕”按钮在右侧),-90 表示向右旋转的横向模 式(“主屏幕”按钮在左侧),180 表示 iPhone头朝下;但这种模式至今 尚未得到支持。如图展示了 window.orientation 的每个值的含义。
【3】案例
检测用户当前手机横竖屏状态,如果处于横屏状态,提示用户 “为了更好的观看体验,请在竖屏下浏览”,否则不提示
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> #box { position: fixed; box-sizing: border-box; padding: 50px; display: none; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, .5); } #box span { margin: auto; font: 20px/40px "宋体"; color: #fff; text-align: center; } </style> </head> <body> <div id="box"><span>为了更好的观看体验,请在竖屏下浏览</span></div> <script> window.addEventListener("orientationchange", toOrientation); function toOrientation() { let box = document.querySelector("#box"); if (window.orientation == 90 || window.orientation == -90) { // 横屏-显示提示 box.style.display = "flex"; } else { // 横屏-隐藏提示 box.style.display = "none"; } } </script> </body> </html>
“JavaScript如何实现移动端横竖屏检测”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。