1. 程式人生 > >cordova app強制橫屏

cordova app強制橫屏

非常簡單,只需要在config.xml里加上這行:

<preference name="Orientation" value="landscape" />

Orientation的值

orentation的預設值是default。
可使用的值有:default, landscape, portait
orentation可以將裝置鎖定方向,不受裝置旋轉影響。
對於IOS支援landscape&portait,可以使用平臺專屬值『all』

關於preference的官網:
https://cordova.apache.org/docs/en/dev/config_ref/index.html
#preference