Go to file
2016-10-17 16:25:16 -07:00
demo added demo project and modified version 2016-10-17 16:25:16 -07:00
src changed orientation spec and modified Readme 2016-08-30 17:11:10 -07:00
tests basic tests added 2016-08-30 17:12:46 -07:00
www added demo project and modified version 2016-10-17 16:25:16 -07:00
.gitignore add gitignore and npmignore files 2016-08-29 16:23:51 -07: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 added demo project and modified version 2016-10-17 16:25:16 -07:00
plugin.xml added demo project and modified version 2016-10-17 16:25:16 -07:00
README.md added demo project and modified version 2016-10-17 16:25:16 -07:00

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 an early version of Screen Orientation API so the api does not currently match 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.

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.