- 将此网页添加到您的 iOS7 主屏幕
- 打开它,并聚焦输入字段(键盘弹出)
- 文字变为红色,因为手机认为它处于横向模式
有什么办法吗?还是我们应该责怪苹果?
注意:此问题仅在应用程序模式下发生,而不是在常规 Safari 浏览模式下。它在 iOS6 中运行良好。
代码:
<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">
<style>
body {
color: blue;
}
@media (orientation:landscape) {
body {
color: red;
}
}
</style>
<body>
<h3>this text will go red when in landscape</h3>
<input type="text" />
</body>