使用 JavaScript 实现设备方向 - 适用于 iPhone,但不适用于 iPad

发布于 2024-11-28 18:34:00 字数 725 浏览 2 评论 0原文

我对 iOS 开发还比较陌生。我试图在 html 文件中使用 javascript 检测方向变化,然后使用 WebView 对象加载该本地 HTML 文件。以下代码是我的 HTML 文件中的 JS。它在 iPhone 上完美运行,但在 iPad 上则不行。两种设备均具有 iOS 4.2 或更高版本,并且应支持设备方向。 LR、FB 和 dir 只是我身体中的 div 元素,我用它们来跟踪方向变化。任何建议将不胜感激,谢谢。

window.addEventListener('deviceorientation', function(eventData) {
    var LR = eventData.gamma;
    var FB = eventData.beta;``
    var DIR = eventData.alpha;
    deviceOrientationHandler(LR, FB, DIR);                
});

function deviceOrientationHandler(LR, FB, DIR) {
    document.getElementById("LR").innerHTML = "Left/Right : " + LR;
    document.getElementById("FB").innerHTML = "Front/Back : " + FB;
    document.getElementById("dir").innerHTML = "Direction : " + DIR;
}

I am relatively new to developing on the iOS. I am trying to detect orientation changes using javascript in a html file, and then load that local HTML file with a WebView object. The following code is the JS from my HTML file. It works perfectly on an iPhone, but NOT on an iPad. Both devices have iOS version 4.2 or higher, and should support device orientation. LR, FB, and dir are just div elements in my body that I am using to track the orientation changes. Any advice would be greatly appreciated, thanks.

window.addEventListener('deviceorientation', function(eventData) {
    var LR = eventData.gamma;
    var FB = eventData.beta;``
    var DIR = eventData.alpha;
    deviceOrientationHandler(LR, FB, DIR);                
});

function deviceOrientationHandler(LR, FB, DIR) {
    document.getElementById("LR").innerHTML = "Left/Right : " + LR;
    document.getElementById("FB").innerHTML = "Front/Back : " + FB;
    document.getElementById("dir").innerHTML = "Direction : " + DIR;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文