Answer the question
In order to leave comments, you need to log in
How to hide the top toolbar in safari?
I would like help in this matter. There is a small game designed for the entire screen size, i.e. without scroll.
On the "nasty" safari I try to hide the top toolbar, but it doesn't always work.
body {
height: 100vh;
}
.page-wrapper {
height: calc(100vh + 1px);
}
function hiddenTopBarInBrouser () {
if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i)) {
setTimeout(() => {
window.scrollTo(0, 1);
}, 0);
}
}
window.addEventListener('load', () => hiddenTopBarInBrouser(), false);
window.addEventListener('orientationchange', () => hiddenTopBarInBrouser(), false);
window.addEventListener('touchstart', () => hiddenTopBarInBrouser(), false);
window.addEventListener('touchmove', () => hiddenTopBarInBrouser(), false);
window.addEventListener('scroll', () => hiddenTopBarInBrouser(), false);
Answer the question
In order to leave comments, you need to log in
If there is no scroll, then it is unrealistic. The toolbar is hidden only by scrolling down, nothing else. I hope they will write to me here that I am mistaken, but unfortunately, I am sure that this will not happen.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question