JavaScript を使用したモバイル デバイス上のブラウザの向きの変化の検出
最新のモバイル ブラウザには、デバイスの向きの変化を検出する方法が用意されており、開発者は、現在の状況に基づいてユーザー インターフェイスを調整したり、さまざまなエクスペリエンスを提供したりできます。 orientation.
画面の向き API を使用した向きの検出
この API を使用するには、次の操作を行うことができます:
スニペットの例を次に示します:
window.addEventListener("DOMContentLoaded", () => { const output = document.getElementById("o9n"); const displayOrientation = () => { const screenOrientation = screen.orientation.type; output.innerHTML = `The orientation of the screen is: ${screenOrientation}`; // Check the orientation and log messages accordingly }; if (screen && screen.orientation !== null) { try { window.screen.orientation.onchange = displayOrientation; displayOrientation(); } catch (e) { output.innerHTML = e.message; } } });
以上がJavaScript を使用してモバイル ブラウザの向きの変化を検出するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。