最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Deprecated: Window: orientationchange event - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 6

We 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

发布评论

评论列表(0)

  1. 暂无评论