首頁 > web前端 > css教學 > 如何撰寫針對 iPhone 6 和 iPhone 6 Plus 的媒體查詢?

如何撰寫針對 iPhone 6 和 iPhone 6 Plus 的媒體查詢?

Barbara Streisand
發布: 2024-11-30 10:58:09
原創
191 人瀏覽過

How to Write Media Queries Targeting iPhone 6 and iPhone 6 Plus?

針對 iPhone 6 和 6 Plus 的媒體查詢

iPhone 6

風景

@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)  // Deprecated: aspect-ratio
    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)  // Deprecated: aspect-ratio
    and (aspect-ratio : 375/559)
    and (device-pixel-ratio : 2)
    and (-webkit-min-device-pixel-ratio : 2)
{ }
登入後複製

用戶代理

# Safari
Mozilla/5.0 (iPhone; CPU iPhone OS 9_0 like Mac OS X) AppleWebKit/601.1.39 (KHTML, like Gecko) Version/9.0 Mobile/13A4305g Safari 601.1

# Google Chrome
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10 (000102)

# Mercury
Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_4 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B554a Safari/9537.53
登入後複製

啟動影像

  • 750 x 1334 (@2x) 肖像
  • 1334 x 750 (@ 2x) 為風景

應用程序圖標

  • 120 x 120

iPhone 6另外

風景

@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)
{ }
登入後複製

啟動圖片

  • 1242 x 2208 (@3x)(縱向)
  • 2208 x 1242 (@3x)(橫向)

應用程序圖標

  • 180 x 180

iPhone 6 和6 Plus

@media only screen 
    and (max-device-width: 640px), 
    only screen and (max-device-width: 667px), 
    only screen and (max-width: 480px)
{ }
登入後複製

預測規格

預測規格
@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 網站,iPhone 6 Plus的預測規格為:

@media 
    (max-device-width:42mm) 
    and (min-device-width:38mm) 
{ }
登入後複製
Apple Watch(推測)

以上是如何撰寫針對 iPhone 6 和 iPhone 6 Plus 的媒體查詢?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板