Last active
December 27, 2015 16:29
-
-
Save minimaldesign/7355015 to your computer and use it in GitHub Desktop.
Detect orientation change
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function onOrientationChange() | |
{ | |
switch(window.orientation) | |
{ | |
case -90: | |
case 90: | |
alert('landscape'); | |
break; | |
default: | |
alert('portrait'); | |
break; | |
} | |
} | |
window.addEventListener('orientationchange', onOrientationChange); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment