Go to file
2017-01-25 10:47:32 -08:00
.github CB-11919 - Add github pull request template 2016-10-04 21:44:20 -07:00
demo working version of screen orientation plugin adhering to w3c specs 2017-01-25 10:47:32 -08:00
src CB-12271 (windows) Fixed "platform add" error, added new tests 2016-12-20 17:18:06 +03:00
tests working version of screen orientation plugin adhering to w3c specs 2017-01-25 10:47:32 -08:00
www improved the orientation change method 2017-01-25 10:47:32 -08:00
.gitignore ignore node_modules 2016-12-13 15:41:04 -08:00
.npmignore add gitignore and npmignore files 2016-08-29 16:23:51 -07:00
LICENSE switch license from MIT to Apache 2.0 2016-05-05 14:46:35 -04:00
package.json clean up merge package.json, add repo, engine, deps 2016-12-13 15:48:19 -08:00
plugin.xml CB-12285 Polyfill promises on platforms that doesn't support them natively 2016-12-21 13:17:35 +03:00
README.md CB-12363 Added build badges 2017-01-18 13:37:47 +03:00
RELEASENOTES.md CB-12236 - Fixed RELEASENOTES for cordova-plugin-screen-orientation 2016-12-11 13:48:24 -08:00

Android 4.4 Android 5.1 iOS 9.3 iOS 10.0 Windows 10 Store
Build Status Build Status Build Status Build Status Build Status

Cordova Screen Orientation Plugin

Cordova plugin to set/lock the screen orientation in a common way for iOS, Android, WP8 and Blackberry 10. 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
.lockOrientation('portrait')

// unlock the orientation
.unlockOrientation()

// 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.lockOrientation('landscape');

// allow user rotate
screen.unlockOrientation();

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

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); // e.g. portrait
});

Android Notes

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

BB10 Notes

Wraps the com.blackberry.app plugin functions, auto installed as a dependancy.

<<<<<<< HEAD

WP8 Notes

Windows phone does not support specification or primary and secondary orientations. If called with a specific orientation the plugin will just apply the landscape or portait orientation.

W8.1 Notes

Windows 8.1 Applicaitons (runtime/metro applications) 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.

Legacy Changelog

See RELEASENOTES.md for the automated changelog.

Changelog

2.0.0

  • Common javascript for iOS, Android and Windows.

1.4.2

  • #101 make iOS rotate as needed when lockOrientation is called

1.4.1

  • #89 Fix for cordova >= 3.6.3

1.4.0

  • Added Windows 8.1 Support
  • #54 Background thread for ios
  • #64 Orientation naming bug fixed
  • Add portrait upside down to iOS default orientations

1.3.5-6

  • Plugin added to npm

1.3.4

  • Readme update

1.3.3

  • #53 WP8 Support

1.3.2

  • #33 iOS8 Delay Block

1.3.0

  • #23 iOS8 flicker

1.2.0-1.2.1

  • #19 iOS8 Crash

Pull requests welcome.