取得螢幕方向:
偵測/監聽螢幕方向變更事件:
參考資料:
mdn - ScreenOrientation: type property
const orientation = window.screen.orientation.type
if (orientation === 'portrait-primary') {
console.log('螢幕方向為直向');
} else if (orientation === 'landscape-primary') {
console.log('螢幕方向為橫向');
}
偵測/監聽螢幕方向變更事件:
window.screen.orientation.onchange = () => {
console.log('螢幕方向已改變');
};
參考資料:
mdn - ScreenOrientation: type property
留言
張貼留言
如果有任何問題、建議、想說的話或文章題目推薦,都歡迎留言或來信: a@ruyut.com