title | description |
---|---|
Screen Orientation |
Set the screen orientation |
AppVeyor | Travis CI |
---|---|
Cordova plugin to set/lock the screen orientation in a common way for iOS, Android, and windows-uwp. This plugin is based on Screen Orientation API so the api matches the current spec.
The plugin adds the following to the screen object (window.screen
):
// lock the device orientation
.orientation.lock('portrait')
// unlock the orientation
.orientation.unlock()
// current orientation
.orientation
cordova plugin add cordova-plugin-screen-orientation
The orientation is in the primary portrait mode.
The orientation is in the secondary portrait mode.
The orientation is in the primary landscape mode.
The orientation is in the secondary landscape mode.
The orientation is either portrait-primary or portrait-secondary (sensor).
The orientation is either landscape-primary or landscape-secondary (sensor).
orientation is unlocked - all orientations are supported.
// set to either landscape
screen.orientation.lock('landscape');
// allow user rotate
screen.orientation.unlock();
// access current orientation
console.log('Orientation is ' + screen.orientation.type);
Both android and iOS will fire the orientationchange event on the window object. For this version of the plugin use the window object if you require notification.
window.addEventListener("orientationchange", function(){
console.log(screen.orientation.type); // e.g. portrait
});
The 'change' event listener has also been added to the screen.orientation object.
screen.orientation.addEventListener('change', function(){
console.log(screen.orientation.type); // e.g. portrait
});
// OR
screen.orientation.onchange = function(){console.log(screen.orientation.type);
};
The screen.orientation property will not update when the phone is rotated 180 degrees.
Windows store apps (windows-uwp) will only display orientation changes if the device has some sort of accelerometer. The internal state of the "orientation" will still be kept, but the actual screen won't rotate unless the device supports it.
See RELEASENOTES.md for the automated changelog.
- Common javascript for iOS, Android and Windows.
- #101 make iOS rotate as needed when lockOrientation is called
- #89 Fix for cordova >= 3.6.3
- Added Windows 8.1 Support
- #54 Background thread for ios
- #64 Orientation naming bug fixed
- Add portrait upside down to iOS default orientations
- Plugin added to npm
- Readme update
- #53 WP8 Support
- #33 iOS8 Delay Block
- #23 iOS8 flicker
- #19 iOS8 Crash
Pull requests welcome.