orientationchange
您可以通过监听事件来实现这一点。
首先,创建一个将添加到块中的自定义类。
.blocks {
width: 100% !important;
}
在pageshow
orpagebeforeshow
上,如果屏幕高度大于宽度(纵向),则添加该类。
$(document).on('pagebeforeshow', function () {
if ($(this).height() > $(this).width()) {
$('.ui-block-a, .ui-block-b, .ui-block-c').addClass('blocks');
}
});
在orientationchange
添加/删除该类。
$(window).on('orientationchange', function (e) {
if (e.orientation == 'landscape') {
$('.ui-block-a, .ui-block-b, .ui-block-c').removeClass('blocks');
}
if (e.orientation == 'portrait') {
$('.ui-block-a, .ui-block-b, .ui-block-c').addClass('blocks');
}
});
演示