--- title: Screen.unlockOrientation() slug: Web/API/Screen/unlockOrientation tags: - API - CSSOM View - Method - NeedsMarkupWork - Screen Orientation - メソッド - 画面の方向 translation_of: Web/API/Screen/unlockOrientation ---
{{APIRef("Screen Orientation API")}}{{Deprecated_Header}}
Screen.unlockOrientation()
メソッドは、ページやアプリによって設定されているすべての画面のロックを除去します。代わりに {{DOMxRef("ScreenOrientation.unlock()")}} を使用してください。
注: このメソッドはインストールされたウェブアプリまたは全画面モードのウェブページでのみ動作します。
var unlocked = window.screen.unlockOrientation();
向きの固定の解除が成功した場合に true
が、解除されなかった場合に false
が返されます。
var unlockOrientation = screen.unlockOrientation || screen.mozUnlockOrientation || screen.msUnlockOrientation || (screen.orientation && screen.orientation.unlock); if (unlockOrientation()) { // 向きのロックが解除されました } else { // 向きのロックの解除に失敗しました }
仕様書 | 状態 | 備考 |
---|---|---|
{{SpecName('Screen Orientation', 'published/20140220.html#extensions-to-the-screen-interface', 'lockOrientation()')}} | {{Spec2('Screen Orientation')}} | 初回定義 (もう草稿には存在しません) |
{{Compat("api.Screen.unlockOrientation")}}