使用 jQuery Mobile,我可以使用以下方法在页面上创建一个固定的工具栏:
<div data-role="header" data-position="fixed">Content</div>
我想做的是在设备方向改变时隐藏固定标题,我可以使用以下方法检测到这一点:
$(window).on('orientationchange ', function() {
if (event.orientation === 'portrait') {
}
else if (event.orientation === 'landscape') {
}
});
如何从页面中隐藏固定工具栏?工具栏上的设置display: none
有效,但在标题之前的位置留下了一个空白区域。