Hello!
Advise the way that you can hide the navigation bar on iOS
devices, after the page is fully loaded.
In the screenshot, I circled this panel in red.
This feature is used, for example, in the mobile version of VK .
Hello!
Advise the way that you can hide the navigation bar on iOS
devices, after the page is fully loaded.
In the screenshot, I circled this panel in red.
This feature is used, for example, in the mobile version of VK .
You can try to add special meta tags.
<meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-touch-fullscreen" content="yes" />
More is written here .
Another variant:
window.addEventListener("load",function() { // Set a timeout... setTimeout(function(){ // Hide the address bar! window.scrollTo(0, 1); }, 0); });
Source: https://ru.stackoverflow.com/questions/196576/
All Articles