EN
JavaScript - detect device orientation
10 points
In this short article we would like to show, how to detect device orientation using JavaScript.
Quick solution:
xxxxxxxxxx
1
console.log(screen.availWidth > screen.availHeight ? 'landscape': 'portrait');
Device orientation detection is not simple process when we want to know exact orientation. In the past was many approaches to do orientation detection.
In this section, you can find implementations that let to get orientation and handle its changes providing quite good performance.
This solution doesn't provide information about screen inversion, but it works in older web browsers.
xxxxxxxxxx
1
window.ORIENTATION = {
2
addListener: (callback) => {
3
let previousValue = screen.availWidth > screen.availHeight;
4
window.addEventListener('resize', (e) => {
5
const currentValue = screen.availWidth > screen.availHeight;
6
if (previousValue !== currentValue) {
7
previousValue = currentValue;
8
callback(e);
9
}
10
});
11
},
12
getState: () => {
13
return screen.availWidth > screen.availHeight ? 'landscape': 'portrait';
14
}
15
};
16
17
18
// Usage example:
19
20
ORIENTATION.addListener(() => {
21
console.log(`orientation: ${ORIENTATION.getState()}`);
22
});
23
24
console.log(`orientation: ${ORIENTATION.getState()}`);
This solution provides information about screen orientation and inversion.
screen.orientation
API used in the solution is not supported by some web browsers (we have 2023). This is reason why it was combined with legacy version solving the problem.
xxxxxxxxxx
1
const STATES = {
2
'90': 'landscape-primary', // landscape
3
'-90': 'landscape-secondary', // landscape (inverted)
4
'0': 'portrait-primary', // portrait
5
'180': 'portrait-secondary' // portrait (inverted)
6
};
7
8
const VARIANTS = [
9
{
10
event: () => 'change', // modern web browsers
11
object: () => screen.orientation, //
12
state: (object) => object.type //
13
},
14
{
15
event: () => 'mozorientationchange', // older Firefox web browsers
16
object: () => screen, //
17
state: (object) => object.mozOrientation //
18
},
19
{
20
event: () => 'msorientationchange', // older Edge web browsers
21
object: () => screen, //
22
state: (object) => object.msOrientation //
23
},
24
{
25
event: () => 'orientationchange', // some mobile web browsers
26
object: () => window, //
27
state: (object) => STATES[window.orientation] //
28
}
29
];
30
31
const createOrientation = () => {
32
for (const variant of VARIANTS) {
33
const object = variant.object();
34
if (object) {
35
const event = variant.event();
36
if ('on' + event in object) {
37
return {
38
addListener: (callback) => object.addEventListener(event, callback),
39
getState: () => {
40
const type = variant.state(object);
41
if (type) {
42
const parts = type.split('-');
43
return {
44
type: parts[0] ?? 'UNKNOWN',
45
inverted: parts[1] !== 'primary'
46
};
47
}
48
return null;
49
}
50
};
51
}
52
}
53
}
54
// legacy version
55
return {
56
addListener: (callback) => {
57
let previousValue = screen.availWidth > screen.availHeight;
58
window.addEventListener('resize', (e) => {
59
const currentValue = screen.availWidth > screen.availHeight;
60
if (previousValue !== currentValue) {
61
previousValue = currentValue;
62
callback(e);
63
}
64
});
65
},
66
getState: () => {
67
return {
68
type: screen.availWidth > screen.availHeight ? 'landscape': 'portrait',
69
inverted: null
70
};
71
}
72
};
73
};
74
75
const ORIENTATION = createOrientation();
76
77
78
79
// Usage example:
80
81
if (ORIENTATION) {
82
const printState = () => {
83
const state = ORIENTATION.getState();
84
console.log(`orientation: ${state?.type ?? 'UNKNOWN'}, inverted: ${state?.inverted ?? null}`);
85
};
86
ORIENTATION.addListener(() => printState());
87
printState();
88
} else {
89
console.error('Orientation API is not supported.');
90
}