<div id="box"></div>
<div id="box2"></div>
<script type="text/javascript">
function isMobile() {
return /Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent) ? true : false;
}
function orient() {
if (window.orientation == undefined) {
return 'Not mobile';
}
// 竖屏
if (window.orientation == 0 || window.orientation == 180) {
return true;
}
// 横屏
else if (window.orientation == 90 || window.orientation == -90) {
return false;
}
}
document.getElementById('box').innerHTML = 'isMobile:' + isMobile()
isMobile()&&(document.getElementById('box2').innerHTML = 'isMobileVertical:' + orient())
//另一种判断屏幕方向的写法
function orient() {
// landscape(横屏)和portrait(竖屏)
return window.matchMedia("(orientation: landscape)");
}
</script>
[前端]判断是否在移动端,以及手机方向
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
相关阅读更多精彩内容
- 《script type="text/javascript"》 var u = navigator.userAge...