1

我正在尝试使用单独的元视点数据为 iPad 和 iPhone 调整网站大小。

到目前为止,这就是我正在使用的:

<meta id="viewport" name='viewport'>
<script>
    (function(doc) {
        var viewport = document.getElementById('viewport');
        if ( navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i)) {
            doc.getElementById("viewport").setAttribute("content", "initial-scale=0.3");
        } else if ( navigator.userAgent.match(/iPad/i) ) {
            doc.getElementById("viewport").setAttribute("content", "initial-scale=0.7");
        }
    }(document));
</script>

它工作得很好。唯一的问题是当设备也被制作成纵向/横向时,我需要比例不同。

有任何想法吗?

谢谢

4

1 回答 1

1

看一下媒体查询的 CSS 定义。

@media screen and (orientation:portrait) { … }
@media screen and (orientation:landscape) { … }

例如,您可以根据可以设置缩放的方向使用不同的样式表:

<link rel=”stylesheet” media=”all and (orientation:portrait)” href=”css/portrait.css”&gt;
<link rel=”stylesheet” media=”all and (orientation:landscape)” href=”css/landscape.css”&gt;
于 2013-09-20T11:04:50.170 回答