码迷,mamicode.com
首页 > 其他好文 > 详细

IONIC屏幕方向锁定

时间:2015-09-07 16:44:26      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:

如果希望阻止app在设备旋转时发生横屏,可以使用这个插件:

cordova plugin add cordova-plugin-screen-orientation

 

// set to either landscape

screen.lockOrientation(‘landscape‘);

// allow user rotate

screen.unlockOrientation();

 

window.addEventListener("orientationchange", function()

{

console.log(‘Orientation changed to ‘ + screen.orientation);

});

IONIC屏幕方向锁定

标签:

原文地址:http://www.cnblogs.com/wt616/p/4789231.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!