iOS4 中出现像素化,但 iOS5 中没有

发布于 2025-01-07 01:50:36 字数 97 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

仅一夜美梦 2025-01-14 01:50:36

我选择遵循 Apple 在其 SDK 中使用的命名约定,通过在文件名中添加后缀“@2x”来定位高分辨率图像。因此,对于低分辨率设备,如果标准图标是“icon.png”,则 RD 设备将为“[电子邮件受保护]”。为了将它们混合在一起,我在针对 Retina 显示屏的 css 文件中添加了一个媒体查询:

@media all and (-webkit-min-device-pixel-ratio: 2) {
    #home-news a {background-image:url(images/[email protected]);}
}

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:

@media all and (-webkit-min-device-pixel-ratio: 2) {
    #home-news a {background-image:url(images/[email protected]);}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文