The orientationchange event has been deprecated.
window.addEventListener("orientationchange", function(event) {
console.log(event.target.screen.orientation.angle);
});
Window: orientationchange event
Deprecated This feature is no longer remended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for patibility purposes. Avoid using it, and update existing code if possible; see the patibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
What can I use now? Is there any alternative way to do this?
The orientationchange event has been deprecated.
window.addEventListener("orientationchange", function(event) {
console.log(event.target.screen.orientation.angle);
});
Window: orientationchange event
Deprecated This feature is no longer remended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for patibility purposes. Avoid using it, and update existing code if possible; see the patibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
What can I use now? Is there any alternative way to do this?
Share Improve this question edited Jun 13, 2021 at 19:23 Bhojendra Rauniyar asked Jun 13, 2021 at 19:14 Bhojendra RauniyarBhojendra Rauniyar 85.7k36 gold badges177 silver badges239 bronze badges2 Answers
Reset to default 6We can use experimental feature ScreenOrientation
screen.orientation.addEventListener('change', function(e) { ... })
screen.orientation.onchange = function(e) { ... }
You can check the available values from screen orientation table for orientation types:
- portrait-primary
- portrait-secondary
- landscape-primary
- landscape-secondary
Here's an example:
screen.orientation.addEventListener('change', function(e) {
if (e.currentTarget.type === 'landscape-primary') {
// landscape mode => angle 0
} else if (e.currentTarget.type === 'portrait-primary') {
// portrait mode => angle 0
}
})
Check browser patibility table.
window.orientation
Still seems to work. I guess you can use
window.addEventListener('resize', function(e) {
if (Math.abs(window.orientation) == 90) {
// landscape mode => angle 90 or -90
} else if (window.orientation == 0) {
// portrait mode => angle 0
}
})
If you your target is strictly mobile