html – iPhone Safari实际分辨率

html – iPhone Safari实际分辨率,第1张

概述我只是有点困惑. 我正在使用Jquery mobile和: <meta content='width=device-width, minimum-scale=1.0, maximum-scale=1.0,user-scalable=no' name='viewport'> 我输出了 alert(Data.$activePage.find('div[data-role=content]').widt 我只是有点困惑.

我正在使用Jquery mobile和:

<Meta content='wIDth=device-wIDth,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no' name='vIEwport'>

我输出了

alert(Data.$activePage.find('div[data-role=content]').wIDth());

使用我的iPhone 4,我得到480×320,我期待960×480,按照:http://www.iphoneresolution.com/

谁能向我解释这里发生了什么?我需要确保我的野兽在iPhone 3,4,ipad safari看起来很好,并期待他们有差异分辨率

解决方法 iPhone 4具有更高的技术分辨率,这是事实.然而,它仍然报告和扩展,好像它是480×320.只是假装它与你的iPhone 3相同,用于界面目的.处理更高分辨率的技巧是你需要使用更高分辨率的图像,使它们看起来尽可能清晰.例如,如果你有一个带有图像背景的div,在iphone 4上你需要在CSS中使用分辨率更高的图像.

例如:

.logo-large{    background-image:url(../images/logo.png);    background-repeat:no-repeat;    background-position:0 0;    position:relative;    top:0;    left:0;    wIDth:290px;    height:65px; }/* HD / Retina -----------------------------------------*/@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min--moz-device-pixel-ratio: 1.5),only screen and (min-resolution: 240dpi) {    .logo-large{        background-image:url(../images/logoHD.png);        background-size:290px 65px;    }}
总结

以上是内存溢出为你收集整理的html – iPhone Safari实际分辨率全部内容,希望文章能够帮你解决html – iPhone Safari实际分辨率所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1041792.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存