gpt4 book ai didi

iphone - 如何隐藏 iPod touch 中的地址栏

转载 作者:行者123 更新时间:2023-12-03 18:32:50 26 4
gpt4 key购买 nike

我需要在加载网络应用程序时隐藏 ipod touch 中的 URL 栏,我尝试了在线找到的所有可能的解决方案,包括此处找到的解决方案: http://www.iphonemicrosites.com/tutorials/how-to-hide-the-address-bar-in-mobilesafari/

并在CSS中设置min-height,但它仅适用于横向,并且在配置文件模式下,它仅隐藏部分URL栏而不是整个栏。有人有什么想法吗?谢谢。

下面是我的代码:

<meta name="app-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-touch-fullscreen" content="YES" />
<meta name="viewport" content="width=320;initial-scale=0.6666;;minimum-scale=0.6666; maximun-scale=1.0;"/>


<title>Test</title>
<script type="application/x-javascript">

addEventListener("load", function()
{
setTimeout(updateLayout, 0);
}, false);

var currentWidth = 0;

function updateLayout()
{
if (window.innerWidth != currentWidth)
{
currentWidth = window.innerWidth;

var orient = currentWidth == 320 ? "profile" : "landscape";
document.body.setAttribute("orient", orient);
setTimeout(function()
{
window.scrollTo(0, 1);
}, 100);
}
}

setInterval(updateLayout, 100);

</script>
<link media="only screen and (max-device-width: 320px)" href="style.css" rel="stylesheet" type="text/css" />

...

最佳答案

这对我有用:

<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">

关于iphone - 如何隐藏 iPod touch 中的地址栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2338638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com