在做RWD的時候,很多時候也會設定當手機直放或橫放時,會顯示甚麼指定的東西。以下是利用Javascript來檢查手機正在使用的方向的編碼。
function readDeviceOrientation() {
if (Math.abs(window.orientation) === 90) {
// Landscape
} else {
// Portrait
}
}
使用方法
window.onorientationchange = readDeviceOrientation();
window.onload = readDeviceOrientation();
參考網址:
Detect iOS Device Orientation with JavaScript