移动网络应用程序 |旋转过度放大 +隐藏网址栏
这是我的 META
<META name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
<META name="HandheldFriendly" content="true" />
,这是我的 JavaSCript,据说隐藏了 URL 栏(这很奇怪)。
window.onload = function () {
setTimeout(function(){window.scrollTo(0, 1);}, 100);
insert();
}
- 文本转到水平位置时非常大,在垂直版本中非常完美。有什么想法吗?
- 在某些页面上,URL 栏完全隐藏,而在其他页面上,则仅部分隐藏。想法?
Here are my METAs
<META name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
<META name="HandheldFriendly" content="true" />
and this is my JavaSCript supposedly hiding the URL bar (which is quirky)
window.onload = function () {
setTimeout(function(){window.scrollTo(0, 1);}, 100);
insert();
}
- The text when turned to horizontal position is extremely large, and is perfect in the vertical version. Any ideas as to why?
- On some pages the URL bar is hidden entirely, on others it's only partially hidden. Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要禁用缩放,请尝试使用此元标记:
For disabling scaling try to use this meta tag: