Go to file
2022-07-17 17:58:54 +09:00
.github ci(android): update java requirement for cordova-android@11 (#92) 2022-07-16 14:17:00 +09:00
src refactor(eslint): use cordova-eslint /w fix (#66) 2020-07-02 10:12:53 +00:00
tests refactor(eslint): use cordova-eslint /w fix (#66) 2020-07-02 10:12:53 +00:00
www fix: resolveOrientation function not working correctly (#77) 2021-01-22 17:06:37 +00:00
.asf.yaml chore(asf): update git notification settings 2020-04-22 13:42:27 +09:00
.eslintrc.yml refactor(eslint): use cordova-eslint /w fix (#66) 2020-07-02 10:12:53 +00:00
.gitattributes build: add .gitattributes to force LF (instead of possible CRLF on Windows) 2019-06-19 15:42:36 +02:00
.gitignore chore: removes old demo project. closes #52 (#65) 2020-07-02 08:05:21 +00:00
.npmignore ci: remove travis & appveyor (#86) 2021-09-25 00:07:52 +09:00
CONTRIBUTING.md Update CONTRIBUTING.md 2020-04-13 14:31:36 +02:00
LICENSE switch license from MIT to Apache 2.0 2016-05-05 14:46:35 -04:00
package-lock.json chore(npm): bump package-lock v2 w/ rebuild (#99) 2022-07-17 17:58:54 +09:00
package.json refactor(eslint): use cordova-eslint /w fix (#66) 2020-07-02 10:12:53 +00:00
plugin.xml chore(release): 3.0.3-dev 2019-06-19 16:15:48 +02:00
README.md ci: add action-badge (#87) 2021-09-25 01:04:23 +09:00
RELEASENOTES.md chore(release): release notes for 3.0.2 2019-06-19 15:53:16 +02:00

title description
Screen Orientation Set the screen orientation

Cordova Screen Orientation Plugin

Android Testsuite Chrome Testsuite iOS Testsuite Lint Test

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

Install

cordova plugin add cordova-plugin-screen-orientation

Supported Orientations

portrait-primary

The orientation is in the primary portrait mode.

portrait-secondary

The orientation is in the secondary portrait mode.

landscape-primary

The orientation is in the primary landscape mode.

landscape-secondary

The orientation is in the secondary landscape mode.

portrait

The orientation is either portrait-primary or portrait-secondary (sensor).

landscape

The orientation is either landscape-primary or landscape-secondary (sensor).

any

orientation is unlocked - all orientations are supported.

Usage

// set to either landscape
screen.orientation.lock('landscape');

// allow user rotate
screen.orientation.unlock();

// access current orientation
console.log('Orientation is ' + screen.orientation.type);

Events

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.

Example usage

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.

Example usage

screen.orientation.addEventListener('change', function(){
    console.log(screen.orientation.type); // e.g. portrait
});
    // OR

screen.orientation.onchange = function(){console.log(screen.orientation.type);
};

Android Notes

The screen.orientation property will not update when the phone is rotated 180 degrees.

Windows UWP Notes

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.