Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページの読み込み後にサファリやその他のモバイルブラウザのアドレスバーを非表示にするために使用する必要があるメタタグを知っている人はいますか?
JavaScriptを使用して、ページを1px下にスクロールします。これを行うと、アドレスバーが自動的に非表示になります。
これは機能します:
window.onload = function() { setTimeout(function(){window.scrollTo(0, 1);}, 1); }