响应式网站显示高像素密度移动设备上的大屏幕视图

时间:2014-02-12 07:19:49

标签: html responsive-design media-queries web-deployment mobile-website

使用媒体查询我为不同的像素数屏幕创建了不同的视图。但是现在在具有高像素数的小屏幕上(如iPhone5,S3,S4)会显示桌面视图。

如何显示小屏幕视图i。即520px在这些高清屏幕手机上查看了哪些内容?

欢迎使用某些元标记或任何可以提供帮助的html。

2 个答案:

答案 0 :(得分:1)

尝试在HTML文件的顶部添加这两行。

<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

答案 1 :(得分:0)

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

CSS

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-width : 320px)
and (max-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-width : 768px)
and (max-width : 1024px) {
/* Styles */
}

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

/* iPads (portrait) ----------- */
@media only screen
and (min-width : 768px)
and (max-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 */
}