iOS4 中出现像素化,但 iOS5 中没有
我的 html 中有一个带有宽度属性(以 px 为单位)的图像标签。在装有 IOS4 的 iPad 上运行此 html 会产生清晰的图像,而在 IOS5 中则看起来像素化。请建议。
I have an image tag with width attribute in px in my html. Running this html in iPad having IOS4 results in a clear image whereas in IOS5 it looks pixelated. Please suggest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我选择遵循 Apple 在其 SDK 中使用的命名约定,通过在文件名中添加后缀“@2x”来定位高分辨率图像。因此,对于低分辨率设备,如果标准图标是“icon.png”,则 RD 设备将为“[电子邮件受保护]”。为了将它们混合在一起,我在针对 Retina 显示屏的 css 文件中添加了一个媒体查询:
I chose to follow the naming convention Apple uses in its SDK to target the high-res images by adding the suffix “@2x” to the file-name. So for low-res devices, if the standard icon is “icon.png”, the RD devices would be “[email protected]”. To get these into the mix, I added a media query into the css file that targets the Retina Display: