使用 JavaScript 实现设备方向 - 适用于 iPhone,但不适用于 iPad
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论