我正在尝试将我的网页优化为720 * 1200移动设备: My page
它适用于320 * 480和480 * 800设备,但不适用于720 * 1200。 页面加载放大, 就像布局视口将是720 * 1030,但视觉视口将是360 * 515。
我已经设置了视口标记,但它没有任何效果。
<meta name="viewport" content="width=device-width,user-scalable=false" />
<title>teeg bejelentkezes</title>
<link rel="stylesheet" type="text/css" media="only screen and (min-device-width:720px)" href="css/style-720.css" />
<link rel="stylesheet" type="text/css" media="only screen and (max-device-width:719px) and (max-width:719px) and (min-device-width:480px) and (min-width:480px)" href="css/style.css" />
<link rel="stylesheet" type="text/css" media="only screen and (max-device-width:479px) and (max-width:479px)" href="css/style-320.css" />
感谢您的帮助!
答案 0 :(得分:2)
<强>建议:强>
min-width
和max-width
。min-device-width
和max-device-width
。视口元标记:
<meta name="viewport" content="width=device-width, initial-scale=1" />
如果需要,请添加minimum-scale
,maximum-scale
或user-scalable
。
媒体查询:
<link rel="stylesheet" type="text/css"
media="only screen and (min-width:720px)"
href="css/style-720.css" />
<link rel="stylesheet" type="text/css"
media="only screen and (min-width:480px) and (max-width:719px)"
href="css/style.css" />
<link rel="stylesheet" type="text/css"
media="only screen and (max-width:479px)"
href="css/style-320.css" />
<强>解释强>
min-width
和max-width
比min-device-width
和max-device-width
更容易使用。使用它们中的所有4个可能会导致在某些情况下不会应用的媒体查询,因为这两组值并不总是匹配。
在iOS设备上,min-device-width
和max-device-width
会以横向模式处理宽度,无论方向如何,min-width
和max-width
会影响当前方向的宽度
此外,在Android设备上,min-device-width
和max-device-width
对应于物理像素,而min-width
和max-width
对应于dips(与设备无关的像素),这使得它更容易使用具有各种像素密度的设备。
The Boston Globe是自适应内容响应式设计的最佳示例,几乎完全适用于min-width
和max-width
。
答案 1 :(得分:0)
试试这些:
width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0
答案 2 :(得分:0)