Answers:
if(window.innerHeight > window.innerWidth){
alert("Please use Landscape!");
}
jQuery Mobile有一个处理此属性更改的事件……如果您想在以后有人旋转时发出警告, orientationchange
另外,经过一番谷歌搜索后,签出window.orientation
(我相信这是以度为单位...)
您还可以使用window.matchMedia
,我喜欢使用它,因为它非常类似于CSS语法:
if (window.matchMedia("(orientation: portrait)").matches) {
// you're in PORTRAIT mode
}
if (window.matchMedia("(orientation: landscape)").matches) {
// you're in LANDSCAPE mode
}
在iPad 2上测试。
David Walsh有更好的方法。
// Listen for orientation changes
window.addEventListener("orientationchange", function() {
// Announce the new orientation number
alert(window.orientation);
}, false);
在这些更改期间,window.orientation属性可能会更改。值0表示纵向视图,-90表示设备横向旋转到右侧,而90表示设备横向旋转到左侧。
您可以使用CSS3:
@media screen and (orientation:landscape)
{
body
{
background: red;
}
}
有几种方法可以做到这一点,例如:
window.orientation
值innerHeight
与innerWidth
您可以采用以下方法之一。
检查设备是否处于纵向模式
function isPortrait() {
return window.innerHeight > window.innerWidth;
}
检查设备是否处于横向模式
function isLandscape() {
return (window.orientation === 90 || window.orientation === -90);
}
用法示例
if (isPortrait()) {
alert("This page is best viewed in landscape mode");
}
如何检测方向变化?
$(document).ready(function() {
$(window).on('orientationchange', function(event) {
console.log(orientation);
});
});
我认为更稳定的解决方案是使用屏幕而不是窗口,因为如果要在台式计算机上调整浏览器窗口的大小,则可以同时使用-横向或纵向。
if (screen.height > screen.width){
alert("Please use Landscape!");
}
为了将所有这些出色的注释应用到我的日常编码中,以确保所有应用程序之间的连续性,我决定在我的jquery和jquery移动代码中都使用以下内容。
window.onresize = function (event) {
applyOrientation();
}
function applyOrientation() {
if (window.innerHeight > window.innerWidth) {
alert("You are now in portrait");
} else {
alert("You are now in landscape");
}
}
不要尝试固定的window.orientation查询(0、90等并不表示人像,风景等):
http://www.matthewgifford.com/blog/2011/12/22/a-misconception-about-window-orientation/
即使在iOS7上,也取决于您进入浏览器的方式0并不总是纵向的
经过一些实验,我发现旋转方向感应设备将始终触发浏览器窗口的resize
事件。因此,在您的大小调整处理程序中,只需调用以下函数:
function is_landscape() {
return (window.innerWidth > window.innerHeight);
}
我不同意投票最多的答案。使用screen
与不使用window
if(screen.innerHeight > screen.innerWidth){
alert("Please use Landscape!");
}
是正确的方法。如果使用计算window.height
,您将在Android上遇到麻烦。打开键盘时,窗口会缩小。因此,请使用屏幕而不是窗口。
这screen.orientation.type
是一个很好的答案,但使用IE。
https://caniuse.com/#search=screen.orientation
通过(在您的js代码中的任何时候)获取方向
window.orientation
当window.orientation
收益0
或180
那么你在纵向模式,返回时90
还是270
那么你在横向模式。
仅CCS
@media (max-width: 1024px) and (orientation: portrait){ /* tablet and smaller */
body:after{
position: absolute;
z-index: 9999;
width: 100%;
top: 0;
bottom: 0;
content: "";
background: #212121 url(http://i.stack.imgur.com/sValK.png) 0 0 no-repeat; /* replace with an image that tells the visitor to rotate the device to landscape mode */
background-size: 100% auto;
opacity: 0.95;
}
}
在某些情况下,您可能需要添加一小段代码,以便在访客旋转设备后重新加载到页面上,以便正确呈现CSS:
window.onorientationchange = function() {
var orientation = window.orientation;
switch(orientation) {
case 0:
case 90:
case -90: window.location.reload();
break; }
};
$(window).on("orientationchange",function( event ){
alert(screen.orientation.type)
});
//see also http://stackoverflow.com/questions/641857/javascript-window-resize-event
//see also http://mbccs.blogspot.com/2007/11/fixing-window-resize-event-in-ie.html
/*
Be wary of this:
While you can just hook up to the standard window resize event, you'll find that in IE, the event is fired once for every X and once for every Y axis movement, resulting in a ton of events being fired which might have a performance impact on your site if rendering is an intensive task.
*/
//setup
window.onresize = function(event) {
window_resize(event);
}
//timeout wrapper points with doResizeCode as callback
function window_resize(e) {
window.clearTimeout(resizeTimeoutId);
resizeTimeoutId = window.setTimeout('doResizeCode();', 10);
}
//wrapper for height/width check
function doResizeCode() {
if(window.innerHeight > window.innerWidth){
alert("Please view in landscape");
}
}
iOS不会更新screen.width
&screen.height
方向更改时。window.orientation
更改时Android不会更新。
我对这个问题的解决方案:
var isAndroid = /(android)/i.test(navigator.userAgent);
if(isAndroid)
{
if(screen.width < screen.height){
//portrait mode on Android
}
} else {
if(window.orientation == 0){
//portrait mode iOS and other devices
}
}
您可以使用以下代码在Android和iOS上检测方向变化:
var supportsOrientationChange = "onorientationchange" in window,
orientationEvent = supportsOrientationChange ? "orientationchange" : "resize";
window.addEventListener(orientationEvent, function() {
alert("the orientation has changed");
}, false);
如果onorientationchange
不支持该事件,则绑定的事件将是该resize
事件。
如果您拥有最新的浏览器,则window.orientation
可能无法使用。在这种情况下,请使用以下代码获取角度-
var orientation = window.screen.orientation.angle;
这仍然是一项实验性技术,您可以在此处检查浏览器的兼容性
这是先前答案的扩展。我发现的最佳解决方案是创建一个无害的CSS属性,该属性仅在满足CSS3媒体查询时才会显示,然后对该属性进行JS测试。
因此,例如,在CSS中,您将拥有:
@media screen only and (orientation:landscape)
{
// Some innocuous rule here
body
{
background-color: #fffffe;
}
}
@media screen only and (orientation:portrait)
{
// Some innocuous rule here
body
{
background-color: #fffeff;
}
}
然后,您转到JavaScript(我正在使用jQuery进行娱乐)。颜色声明可能很怪异,因此您可能想使用其他东西,但这是我找到的最简单的测试方法。然后,您可以只使用resize事件来进行切换。将所有内容组合在一起以:
function detectOrientation(){
// Referencing the CSS rules here.
// Change your attributes and values to match what you have set up.
var bodyColor = $("body").css("background-color");
if (bodyColor == "#fffffe") {
return "landscape";
} else
if (bodyColor == "#fffeff") {
return "portrait";
}
}
$(document).ready(function(){
var orientation = detectOrientation();
alert("Your orientation is " + orientation + "!");
$(document).resize(function(){
orientation = detectOrientation();
alert("Your orientation is " + orientation + "!");
});
});
最好的部分是,在我撰写此答案时,它似乎对桌面界面没有任何影响,因为它们(通常)(似乎)没有(似乎)将任何定向参数传递给页面。
这是我根据David Walsh的文章(检测移动设备上的方向变化)发现的最佳方法。
if ( window.matchMedia("(orientation: portrait)").matches ) {
alert("Please use Landscape!")
}
说明:
Window.matchMedia()是一种本地方法,可让您定义媒体查询规则并在任何时间点检查其有效性。
我发现onchange
在此方法的返回值上附加侦听器很有用。例:
var mediaQueryRule = window.matchMedia("(orientation: portrait)")
mediaQueryRule.onchange = function(){ alert("screen orientation changed") }
我使用了Android Chrome浏览器的“屏幕方向API”
要查看当前方向,请调用console.log(screen.orientation.type)(也可以是screen.orientation.angle)。
结果:人像原| 肖像中学| 风景名胜| 风景中学
以下是我的代码,希望对您有所帮助:
var m_isOrientation = ("orientation" in screen) && (typeof screen.orientation.lock == 'function') && (typeof screen.orientation.unlock == 'function');
...
if (!isFullscreen()) return;
screen.orientation.lock('landscape-secondary').then(
function() {
console.log('new orientation is landscape-secondary');
},
function(e) {
console.error(e);
}
);//here's Promise
...
screen.orientation.unlock();
screen.orientation.addEventListener("change", function(e) {
console.log(screen.orientation.type + " " + screen.orientation.angle);
}, false);
iOS设备上的JavaScript中的window对象具有direction属性,该属性可用于确定设备的旋转。以下显示了iOS设备(例如iPhone,iPad,iPod)在不同方向上的值window.orientation。
该解决方案也适用于android设备。我在Android本机浏览器(Internet浏览器)和Chrome浏览器中都进行了检查,即使是旧版本也是如此。
function readDeviceOrientation() {
if (Math.abs(window.orientation) === 90) {
// Landscape
} else {
// Portrait
}
}
这就是我用的。
function getOrientation() {
// if window.orientation is available...
if( window.orientation && typeof window.orientation === 'number' ) {
// ... and if the absolute value of orientation is 90...
if( Math.abs( window.orientation ) == 90 ) {
// ... then it's landscape
return 'landscape';
} else {
// ... otherwise it's portrait
return 'portrait';
}
} else {
return false; // window.orientation not available
}
}
实作
window.addEventListener("orientationchange", function() {
// if orientation is landscape...
if( getOrientation() === 'landscape' ) {
// ...do your thing
}
}, false);
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Rotation Test</title>
<link type="text/css" href="css/style.css" rel="stylesheet"></style>
<script src="js/jquery-1.5.min.js" type="text/javascript"></script>
<script type="text/javascript">
window.addEventListener("resize", function() {
// Get screen size (inner/outerWidth, inner/outerHeight)
var height = $(window).height();
var width = $(window).width();
if(width>height) {
// Landscape
$("#mode").text("LANDSCAPE");
} else {
// Portrait
$("#mode").text("PORTRAIT");
}
}, false);
</script>
</head>
<body onorientationchange="updateOrientation();">
<div id="mode">LANDSCAPE</div>
</body>
</html>
需要注意的一件事window.orientation
是,undefined
如果您不在移动设备上,它将返回。因此,一个良好的功能检查的方向可能是这样的,在那里x
是window.orientation
:
//check for orientation
function getOrientation(x){
if (x===undefined){
return 'desktop'
} else {
var y;
x < 0 ? y = 'landscape' : y = 'portrait';
return y;
}
}
这样称呼它:
var o = getOrientation(window.orientation);
window.addEventListener("orientationchange", function() {
o = getOrientation(window.orientation);
console.log(o);
}, false);