Window: orientationchange event

orientationchange 事件在設備方向改變時被觸發。

冒泡 No
可取消 No
介面 Event
事件處理器 onorientationchange

範例

可於 addEventListener 方法中使用 abort 事件:

js
window.addEventListener("orientationchange", function () {
  console.log(
    "the orientation of the device is now " + screen.orientation.angle,
  );
});

或使用 onorientationchange 事件處理器屬性:

js
window.onorientationchange = function () {
  console.log(
    "the orientation of the device is now " + screen.orientation.angle,
  );
};

規範

Specification
Compatibility Standard
# event-orientationchange

瀏覽器相容性

BCD tables only load in the browser