iOS 7에서 주소 표시 줄과 상태 표시 줄을 숨길 수 있습니까?
가로 앱에서는 현재 아래 iOS 코드를 사용하여 이전 iOS 버전에서 사용하고 있으며 IOS 7에서도 잘 작동합니다. 페이지를 열면 전체 화면으로 이동하여 그대로 유지됩니다.
JS :
window.addEventListener("load",function() {
// Set a timeout...
setTimeout(function(){
// Hide the address bar!
window.scrollTo(0, 1);
}, 0);
});
HTML :
<!-- For iOS web apps -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="AMC Walking Dead Story Sync">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
사실 iOS 7 iPhone 및 iPad에서 화면 하단을 탭하면 주소 표시 줄과 상태 표시 줄이 나타나고 제거하는 유일한 방법은 전화 방향을 변경 한 다음 이전 방향으로 다시 변경하는 것입니다. 어쨌든 그 조작을 피할 수 있습니까?