出于某种原因,当我的网站从纵向旋转到横向或反之亦然时,iPhone 5 不会改变我的网站布局。因此,如果页面以纵向视图加载,我定义的纵向媒体查询会启动并调整站点,但如果它被旋转,则布局会针对纵向视图保持优化。如果我手动刷新页面,横向视图会加载,但如果手机旋转不会变为纵向,除非再次刷新。
这是我的 CSS 文档中的基本代码:
/* Normal CSS for Desktop Site*/
@media only screen and (orientation:landscape) and (max-device-width: 568px), (max-width: 568px){
/*iPhone 5 Landscape Styles */
}
@media only screen and (orientation:landscape) and (max-device-width: 480px), (max-width: 480px){
/*iPhone 4/4s Landscape Styles*/
}
@media only screen and (orientation:portrait) and (max-device-width: 320px), (max-width: 320px){
/*All iPhones Portrait Styles*/
}
这是来自<head>
我的 HTML 文件:
<!-- WEB APP META -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link href="/img/webapp/default-iphone5.png" media="(device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link href="/img/webapp/default-iphone@2x.png" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image" />
<link rel="apple-touch-icon" sizes="114x114" href="/img/webapp/touch-icon-114.png" />
此问题仅在 iPhone 5 上发生。媒体查询在其他 iPhone 上按预期工作。我四处搜索并弄乱了代码,但似乎没有任何效果。
网站链接在这里,如果你想看看。 注意:只有主页有效
提前致谢。