1

我正在尝试推动用户使用 ipad 切换视图。正确的视图应该是横向。

最好的方法是什么?

一个消息?附加一些 html 并隐藏肖像内容?

使用的jQuery

  if (window.orientation === 0) {

               window.addEventListener('orientationchange', callback, false);

            }
4

1 回答 1

0

你可以:

  1. 赶上orientationchange事件window
  2. 根据方向使用不同的样式表

例如

<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>
于 2012-08-20T12:19:56.600 回答