web-dev-qa-db-fra.com

Largeurs à utiliser dans les requêtes multimédia

Quelles sont les largeurs de requête multimédia les plus importantes pour tous les appareils, tels que les ordinateurs de bureau, les tablettes, les ordinateurs portables/Ipads, les téléphones portables et les smartphones? Existe-t-il des largeurs standard pour ces appareils?

46
Nishantha

Je cherche partout la meilleure réponse pour cela. Voici ce que j'ai trouvé.

@media (min-width:320px) { /* smartphones, iPhone, portrait 480x320 phones */ }
@media (min-width:481px) { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (min-width:641px) { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
@media (min-width:961px) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:1281px) { /* hi-res laptops and desktops */ }

Je pense que c'est mieux avec l'approche d'abord mobile. Commencez à partir de la feuille de style mobile, puis appliquez des requêtes multimédia pertinentes pour d'autres appareils. Merci pour @ryanve. Voici le lien .

75
Nishantha

Je trouve que ce sont de bons points de départ, mais il faut toujours tester et modifier au fur et à mesure. Je suggérerais également d'utiliser ems au lieu de px pour les dimensions de différentes dimensions et résolutions de l'appareil (raisons décrites ici ( http://blog.cloudfour.com/the-ems-have-it-proportional-media-queries) -ftw / ))

Donc, les requêtes ci-dessus ressemblent à ceci:

@media (min-width:20em) { /* smartphones, iPhone, portrait 480x320 phones */ }
@media (min-width:30.063em) { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ }
@media (min-width:40.063em) { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ }
@media (min-width:60.063em) { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:64.063em) { /* big landscape tablets, laptops, and desktops */ }
@media (min-width:80.063em) { /* hi-res laptops and desktops */ }

Il y a aussi un joli pixel pour la calculatrice en ligne ici ( http://pxtoem.com/ ) Pour ceux d'entre vous qui ne sont pas aussi familiers, y compris moi-même.

17
Terri Swiatek

Essayez ceci, y compris rétine

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
4
Mo.

essayez cette requête de média cela vous aidera

@media only screen and (min-width:1280px) {}

@media (min-width:1024px) and (max-width:1279px) {}

@media (min-width:768px) and (max-width:1023px) {}

@media (min-width:480px) and (max-width:767px) {}

@media screen and (max-width:479px) {}

@media only screen and (max-width:320px) {}

@media only screen and (max-width:767px) {}
1
Amaresh Tiwari

requête média parfaite

  @media (max-width:400px) {}
    @media (min-width:401px) and (max-width:599px) {}
    @media (min-width:600px) and (max-width:767px) {}
    @media (min-width:768px) and (max-width:950px) {}
    @media (min-width:951px) and (max-width:1050px) {}
    @media (min-width:1051px) {}
0
shammidevd