我正在尝试推动用户使用ipad切换视图。 正确的观点应该是风景。
最好的方法是什么?
一条消息?附加一些HTML并隐藏肖像内容?
使用Jquery
if (window.orientation === 0) {
window.addEventListener('orientationchange', callback, false);
}
答案 0 :(得分:0)
你可以:
orientationchange
window
事件
e.g。
<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css">
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">
<script>
window.addEventListener('orientationchange', callback, false);
</script>