编程语言
首页 > 编程语言> > javascript-在Phonegap JQuery mobile上更改方向

javascript-在Phonegap JQuery mobile上更改方向

作者:互联网

嗨,我使用jqm和phonegap编写了简单的应用程序,并且我在更改方向时遇到了一些问题.我需要在一页上更改方向.我可以更改值“支持的界面方向”,但它适用于所有页面,可能存在一种更改页面方向的方法吗?

解决方法:

您可以使用此插件.

https://github.com/champierre/pg-plugin-screen-orientation

要将屏幕锁定为横向:

navigator.screenOrientation.set('landscape');

要将屏幕锁定为纵向:

navigator.screenOrientation.set('portrait');

开锁:

navigator.screenOrientation.set('fullSensor');

标签:cordova,jquery-mobile,javascript
来源: https://codeday.me/bug/20191101/1983339.html