orientationchange
事件在設備方向改變時被觸發。
冒泡 | No |
---|---|
可取消 | No |
介面 | Event |
事件處理器 | onorientationchange |
範例
可於 addEventListener
方法中使用 abort
事件:
window.addEventListener("orientationchange", function() {
console.log("the orientation of the device is now " + screen.orientation.angle);
});
或使用 onorientationchange
事件處理器屬性:
window.onorientationchange = function() {
console.log("the orientation of the device is now " + screen.orientation.angle);
};
規範
Specification | Status |
---|---|
Compatibility Standard The definition of 'orientationchange' in that specification. |
Living Standard |
瀏覽器相容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.