3

也许这很简单,但我还没有找到答案

如何通过 CSS 在任何模式下检测 iphone、ipad、ipad、android 手机?

纯粹通过 css 阅读了这篇 Detect iPhone/iPad, 它描述了如何检测所有特定设备

但我要寻找的是区分台式机/笔记本电脑和所有 ipad/ipod/iphone/android 设备

4

2 回答 2

6

以下是我对此事的说明: 对于任何设备 - 对其屏幕尺寸和比例进行研究,然后在每个设备的样式表中进行 @media 查询。

iPhone4

<link rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2)" type="text/css" href="iphone4.css" />

(纵向或横向)在 iPad 上

<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css"> 
<link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css">

手机肖像

 @media screen and (max-device-width: 480px) and (orientation: portrait){
 /* some CSS here */
 }

手机景观

@media screen and (max-device-width: 640px) and (orientation: landscape){
/* some CSS here */
}

手机纵向或横向

@media screen and (max-device-width: 640px){
  /* some CSS here */
}

iPhone 4+ 纵向或横向

@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){
/* some CSS here */
}

仅限 iPhone 5

@media only screen and (min-device-width: 640px) and (max-device-width: 1136px) and (-    webkit-min-device-pixel-ratio: 2) {
    /* styles here */
}

iPhone < 5:纵横比

@media screen and (device-aspect-ratio: 2/3) {}

平板电脑纵向或横向

@media screen and (min-device-width: 768px) and (max-device-width: 1024px){
/* some CSS here */
}

台式机

@media screen and (min-width: 1024px){
/* some CSS here */
}

款式仅介于两种尺寸之间。

@media screen and (min-width: 319px) and (max-width: 1281px){}

BTDUBS - 你知道 WordPress 内置了一个 is_iphone() 全局变量吗?

global $is_iphone;
if ( $is_iphone ) {
 // do something if $is_iphone is true
 }
于 2013-02-16T20:32:20.387 回答
3

您可以使用@media 查询来解决您的问题,以下可能是您可以尝试的。您还可以将设备方向设置为针对您的设备的设置,或者设置您的最大宽度,如下所示,然后编写您的 css。希望这可以帮助。

@media screen and (max-device-width: 480px) {
  .class {
    background: #000;
  }
}
于 2013-02-16T20:14:07.920 回答