DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • When Angular APIs Return 200 but the Frontend Is Already Failing Users
  • 5 Layers of Prompt Injection Defense You Can Wire Into Any Node.js App
  • Boosting React.js Development Productivity With Google Code Assist
  • Why Angular Performance Problems Are Often Backend Problems

Trending

  • Why Your Test Automation Is Always Behind the Code And the Architecture That Fixes It
  • Architecting Zero-Trust AI Agents: How to Handle Data Safely
  • Why Round-Robin Won't Save You: Load Balancing Challenges in Data Streaming Services With Heterogeneous Traffic
  • Data Contracts as the "Circuit Breaker" for Model Reliability
  1. DZone
  2. Coding
  3. JavaScript
  4. Detecting Screen Orientation in JavaScript

Detecting Screen Orientation in JavaScript

Let's look at how to detect screen orientation in JavaScript.

By 
Johnny Simpson user avatar
Johnny Simpson
·
Apr. 28, 22 · Code Snippet
Likes (4)
Comment
Save
Tweet
Share
9.8K Views

Join the DZone community and get the full member experience.

Join For Free

Sometimes, you want to know if a screen is in portrait or landscape mode. There are two primary places you would like to do this: JavaScript and CSS. So let's look at how to detect the screen's orientation in both.

Detecting Orientation in CSS

In CSS, use the following media queries to match any portrait or landscape device:

 
/* Portrait orientation */
@media screen and (orientation: portrait) {

}
/* Landscape orientation */
@media screen and (orientation: landscape) {

}


Detecting Orientation in JavaScript

Since screen.orientation has patchy support; you can use the same media query in JavaScript like so:

 
let portrait = window.matchMedia("(orientation: portrait)");

portrait.addEventListener("change", function(e) {
    if(e.matches) {
        // Portrait mode
    } else {
        // Landscape
    }
})


Detecting Orientation Changes in JavaScript

Should you need to detect when a user changes orientation, you can use the following event listener:

 
screen.orientation.addEventListener("change", function(e) {
    // Do something on change
});


Currently, this is not supported in Safari, so your mileage may vary on this one. However, you can use the matchMedia query from above to achieve similar functionality if you need to.

Conclusion

Detecting screen orientation is easy - and in the future, we'll be able to use screen.orientation to do this reliably. For now, it's best to stick with CSS media queries and window.matchMedia.

JavaScript

Published at DZone with permission of Johnny Simpson. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • When Angular APIs Return 200 but the Frontend Is Already Failing Users
  • 5 Layers of Prompt Injection Defense You Can Wire Into Any Node.js App
  • Boosting React.js Development Productivity With Google Code Assist
  • Why Angular Performance Problems Are Often Backend Problems

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook