0
深入搜索後,我仍然無法隱藏我的IPAD web應用中的URL欄。在ipad上隱藏url欄
請幫助
我嘗試添加:
meta name="apple-touch-fullscreen" content="yes"
meta name="apple-mobile-web-app-capable" content="yes"
但是,如果我的網站添加到我的主屏幕它只能...
感謝,
深入搜索後,我仍然無法隱藏我的IPAD web應用中的URL欄。在ipad上隱藏url欄
請幫助
我嘗試添加:
meta name="apple-touch-fullscreen" content="yes"
meta name="apple-mobile-web-app-capable" content="yes"
但是,如果我的網站添加到我的主屏幕它只能...
感謝,
我遇到的唯一建議的修復方法是向下滾動網頁以隱藏URL欄。這可以用JavaScript來實現:
window.addEventListener("load",function() {
setTimeout(function(){
window.scrollTo(0, 1);
}, 0);
});
這將僅適用於iPhone和Android手機的工作。 – tungd
我知道,但我必須在iPad上做到這一點... – Elad