嗨,我使用jqm和phonegap编写了简单的应用程序,并且我在更改方向时遇到了一些问题.我需要在一页上更改方向.我可以更改值“支持的界面方向”,但它适用于所有页面,可能存在一种更改页面方向的方法吗?
解决方法:
您可以使用此插件.
https://github.com/champierre/pg-plugin-screen-orientation
要将屏幕锁定为横向:
navigator.screenOrientation.set('landscape');
要将屏幕锁定为纵向:
navigator.screenOrientation.set('portrait');
开锁:
navigator.screenOrientation.set('fullSensor');