37 votes

Détecter iPhone / iPad uniquement par CSS

J'ai essayé de détecter un iPhone ou un iPad uniquement par feuille de style. J'ai essayé la solution fournie ici en utilisant l'ordinateur de poche @media, uniquement l'écran et (largeur maximale de l'appareil: 480 pixels) {.

Cependant, cela ne semble pas fonctionner. Des idées?

30voto

Olivier Payen Points 11220

iPhone et iPod touch:

 <link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="../iphone.css" type="text/css" />
 

iPhone 4 et iPod touch 4G:

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

iPad:

 <link rel="stylesheet" media="only screen and (max-device-width: 1024px)" href="../ipad.css" type="text/css" />
 

24voto

Bart Points 3211

Voici comment je gère les appareils iPhone (et similaires) [et non iPad]:

Dans mon fichier CSS:

 @media only screen and (max-width: 480px), only screen and (max-device-width: 480px) {
   /* CSS overrides for mobile here */
}
 

Dans la tête de mon document HTML:

 <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
 

15voto

DarkDust Points 47584

Vous voudrez peut-être essayer la solution de cet article O'Reilly .

La partie importante sont ces requêtes multimédia CSS:

 <link rel="stylesheet" media="all and (max-device-width: 480px)" href="iphone.css"> 
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait)" href="ipad-portrait.css"> 
<link rel="stylesheet" media="all and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape)" href="ipad-landscape.css"> 
<link rel="stylesheet" media="all and (min-device-width: 1025px)" href="ipad-landscape.css"> 
 

14voto

zSprawl Points 314

J'utilise ceux-ci:

 /* Non-Retina */
@media screen and (-webkit-max-device-pixel-ratio: 1) {
}

/* Retina */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
}

/* iPhone Portrait */
@media screen and (max-device-width: 480px) and (orientation:portrait) {
} 

/* iPhone Landscape */
@media screen and (max-device-width: 480px) and (orientation:landscape) {
}

/* iPad Portrait */
@media screen and (min-device-width: 481px) and (orientation:portrait) {
}

/* iPad Landscape */
@media screen and (min-device-width: 481px) and (orientation:landscape) {
}
 

http://zsprawl.com/iOS/2012/03/css-for-iphone-ipad-and-retina-displays/

0voto

Jonas Points 62

Eh bien, je recommanderais de consulter lessframework.com .

Il existe même une option pour détecter les périphériques à haute résolution.

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X