在Jquery Mobile或PhoneGap中禁用自动旋转

前端之家收集整理的这篇文章主要介绍了在Jquery Mobile或PhoneGap中禁用自动旋转前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
虽然移动设备的跨平台开发是如此的好.禁止自动旋转或锁定到一个方向(即纵向或横向)不是一个简单的选项.

有没有在Jquery Mobile,PhoneGap,XUI在任何地方?

如果是的话请帮忙.它驱动我坚果

解决方法

要完成上面的答案.

在iPhone上添加到-info.plist:

<dict>
`.....
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
    </array>
..........
</dict>

在Android到AndroidManifest.xml

<activity   ........      android:screenOrientation="portrait">
原文链接:https://www.f2er.com/jquery/178848.html

猜你在找的jQuery相关文章