iPhone 6 和 6 Plus 媒体查询:综合指南
无论您是经验丰富的 iOS 开发者还是刚刚起步,它都适合您对于针对 Apple 移动设备生态系统中的各种屏幕尺寸优化应用程序至关重要。该系列的最新产品包括 iPhone 6 和 6 Plus。为了确保您的应用程序无缝适应这些设备,本文提供了有关您需要定位的特定屏幕尺寸和媒体查询的详细指导。
iPhone 6
带有iPhone 6 的屏幕尺寸为 375 x 667 像素,分辨率为 1334 x 750,提供比前代产品更宽的显示屏。以下是用于优化内容的相应媒体查询:
@media only screen and (min-device-width : 375px) // or 213.4375em or 3in or 9cm and (max-device-width : 667px) // or 41.6875em and (width : 667px) // or 41.6875em and (height : 375px) // or 23.4375em and (orientation : landscape) and (color : 8) and (device-aspect-ratio : 375/667) and (aspect-ratio : 667/375) and (device-pixel-ratio : 2) and (-webkit-min-device-pixel-ratio : 2) { } @media only screen and (min-device-width : 375px) // or 213.4375em and (max-device-width : 667px) // or 41.6875em and (width : 375px) // or 23.4375em and (height : 559px) // or 34.9375em and (orientation : portrait) and (color : 8) and (device-aspect-ratio : 375/667) and (aspect-ratio : 375/559) and (device-pixel-ratio : 2) and (-webkit-min-device-pixel-ratio : 2) { }
iPhone 6 Plus
较大的 iPhone 6 Plus 拥有 414 x 736 像素的宽大屏幕尺寸分辨率为 1920 x 1080。利用这些媒体查询来定制您的内容:
@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 3) { } @media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (device-width : 414px) and (device-height : 736px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 3) and (-webkit-device-pixel-ratio : 3) { }
针对 iPhone 6 和 6 Plus
如果您打算同时支持两种 iPhone 型号,请使用以下媒体查询:
@media only screen and (max-device-width: 640px), only screen and (max-device-width: 667px), only screen and (max-width: 480px) { }
额外注意事项
即将推出的 iPhone 型号的预测媒体查询
根据 Apple 的说法,未来的 iPhone 型号可能会配备分辨率更高的屏幕。根据这些预测,考虑将这些媒体查询纳入您的长期优化策略中:
@media screen and (min-device-width : 1080px) and (max-device-width : 1920px) and (min-resolution: 401dpi) and (device-aspect-ratio:16/9) { } @media screen and (min-device-width : 750px) and (max-device-width : 1334px) and (min-resolution: 326dpi) { }
Apple Watch 的媒体查询(推测)
虽然确切的Apple Watch 的规格仍然有点模糊,根据已知的屏幕尺寸,这些媒体查询可能会证明有用:
@media (!small) and (damn-small), (omfg) { } @media (max-device-width:42mm) and (min-device-width:38mm) { }
随着可穿戴设备市场的发展,媒体查询级别 4 将进一步增强您针对特定设备和外形尺寸的能力。
以上是如何使用媒体查询来优化我的 iPhone 6 和 iPhone 6 Plus 网站?的详细内容。更多信息请关注PHP中文网其他相关文章!