如何在应用程序和我们的网站中禁用方向横向? [复制]
Posted
技术标签:
【中文标题】如何在应用程序和我们的网站中禁用方向横向? [复制]【英文标题】:How to disable orientation Landscape in app and our website? [duplicate] 【发布时间】:2017-02-23 20:12:09 【问题描述】:我想使用 jquery 在我们的应用程序和网站中禁用方向:横向。 所以请帮助我在应用程序和网站中禁用。
【问题讨论】:
显示你的代码。 我不知道任何禁用代码所以我没有代码所以请帮助我.. 【参考方案1】:抱歉,您不能在网页上强制定向,但是当用户处于横向模式时,您可以在内容中显示一些信息。
为此借助媒体查询并检查方向,在横向样式表(style_landscape.css) 中隐藏所有内容并显示一条消息,即您的应用无法在横向上打开,并且用户必须恢复为纵向模式才能继续。
<link rel="stylesheet" type="text/css" href="css/style_landscape.css" media="screen and (orientation: landscape)">
<link rel="stylesheet" type="text/css" href="css/style_portrait.css" media="screen and (orientation: portrait)">
【讨论】:
【参考方案2】:我不确定它是否会起作用,但试试这个
<head>
<style type="text/css">
#landscape
position: absolute;
top: 0px;
left: 0px;
background: #000000;
width: 100%;
height: 100%;
display: none;
z-index: 20000;
opacity: 0.9;
margin:0 auto;
#landscape div
color: #FFFFFF;
opacity: 1;
top: 50%;
position: absolute;
text-align: center;
display: inline-block;
width: 100%;
</style>
<script>
function doOnOrientationChange()
switch(window.orientation)
case -90:
document.getElementById("landscape").style.display="block";
break;
case 90:
document.getElementById("landscape").style.display="block";
break;
default:
document.getElementById("landscape").style.display="none";
break;
//Listen to orientation change
window.addEventListener('orientationchange', doOnOrientationChange);
</script>
</head>
<body onload="doOnOrientationChange();">
<div id="landscape"><div>"Rotate Device to Portrait"</div></div>
</body>
【讨论】:
谢谢你这个代码正在工作。 欢迎您....以上是关于如何在应用程序和我们的网站中禁用方向横向? [复制]的主要内容,如果未能解决你的问题,请参考以下文章