gpt4 book ai didi

javascript - 在页面加载时使用设备方向

转载 作者:行者123 更新时间:2023-11-29 18:03:13 25 4
gpt4 key购买 nike

我正在尝试通过 deviceorientation 获取 alpha、beta 和 gamma 坐标事件。

我的代码:

window.addEventListener('deviceorientation', function(event) {
alert(event.alpha + ' : ' + event.beta + ' : ' + event.gamma);
});

JS fiddle :https://jsfiddle.net/myL17nzt/

这对于在设备移动时不断获取坐标非常有用,但我只想在页面加载时获取坐标,而不是让它监听移动。我尝试将 window.addEventListener 更改为 window.onload,但这并没有奏效。

有什么想法可以实现吗?

谢谢!

最佳答案

最好让监听器自己移除。

function deviceOrientation(event) {
alert(event.alpha + ' : ' + event.beta + ' : ' + event.gamma);
window.removeEventListener('deviceorientation', deviceOrientation);
}
window.addEventListener('deviceorientation', deviceOrientation);

这样您就不会为您不关心的事件调用它。一些库有一个名为 once 的函数,它会在第一次事件发生后删除事件监听器。

关于javascript - 在页面加载时使用设备方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33468368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com