gpt4 book ai didi

android - 在 jQuery Mobile 中更改方向更改时的网格数

转载 作者:太空狗 更新时间:2023-10-29 13:30:59 25 4
gpt4 key购买 nike

我正在尝试将横向的网格数量从 2 个更改为 3 个网格,我该如何实现?

最佳答案

首先,我们不能使用window.orientation 来明确识别portraitlandscape 方向,因为每个设备都会给出不同的结果。在这里阅读更多相关信息:http://www.matthewgifford.com/2011/12/22/a-misconception-about-window-orientation/

因此,要实现这一点,我们需要使用经典的方向检测功能。如果窗口高度大于窗口宽度,我们将得到纵向,或者在任何其他情况下,我们将得到横向。

我为您提供了您问题的有效示例。不幸的是,我无法为您创建一个 jsFiddle 示例,因为它不会检测到 orientationchange 事件。要测试下面的代码,只需将其复制到一个空的 html 文件中即可。

HTML :

<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<style>
.ui-block-a {
background: red;
}

.ui-block-b {
background: green;
}

.ui-block-c {
background: blue;
}
</style>
<script type="text/javascript" src="http://www.dragan-gaic.info/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>

$(document).on('pagebeforeshow', '#index', function(){
detectOrientationMode();
});

$(window).bind('orientationchange', function() {
detectOrientationMode();
});

function detectOrientationMode() {
if($(window).height() > $(window).width()) {
$('#custom-grid .ui-block-c').css('display','none');
$('#custom-grid').removeClass('ui-grid-b').addClass('ui-grid-a');
} else {
$('#custom-grid .ui-block-c').css('display','block');
$('#custom-grid').removeClass('ui-grid-a').addClass('ui-grid-b');
}
}
</script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
</div>

<div data-role="content">
<div class="ui-grid-a" id="custom-grid">
<div class="ui-block-a">Block A</div>
<div class="ui-block-b">Block B</div>
<div class="ui-block-c">Block C</div>
</div><!-- /grid-b -->
</div>

<div data-theme="a" data-role="footer" data-position="fixed">

</div>
</div>
</body>
</html>

关于android - 在 jQuery Mobile 中更改方向更改时的网格数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15460386/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com