gpt4 book ai didi

javascript - 使用耳机间隙中的加速度计检测运动

转载 作者:行者123 更新时间:2023-12-01 01:04:47 26 4
gpt4 key购买 nike

我正在制作一个应用程序,所以我想使用加速度计来检测用户是否移动了设备,所以我想知道如何通过将加速度计插件添加到 config.xml 文件中来将其包含到 PhoneGap 构建应用程序中如何使用 JavaScript 每 20 - 30 毫秒检查应用程序中的设备移动情况?

最佳答案

Cordova 要在 Cordova 应用程序中安装该插件,请运行以下命令:

cordova plugin add cordova-plugin-device-motion 

电话间隙要将插件添加到您的 PhoneGap 应用程序,请将以下内容添加到您的 config.xml:

<plugin name="cordova-plugin-device-motion" />

代码:

<!DOCTYPE html>
<html>
<head>
<title>Acceleration Example</title>

<script type="text/javascript" charset="utf-8" src="cordova-x.x.x.js"></script>
<script type="text/javascript" charset="utf-8">

// The watch id references the current `watchAcceleration`
var watchID = null;

// Wait for Cordova to load
//
document.addEventListener("deviceready", onDeviceReady, false);

// Cordova is ready
//
function onDeviceReady() {
startWatch();
}

// Start watching the acceleration
//
function startWatch() {

// Update acceleration every 3 seconds
var options = { frequency: 30 };

watchID = navigator.accelerometer.watchAcceleration(onSuccess, onError, options);
}

// Stop watching the acceleration
//
function stopWatch() {
if (watchID) {
navigator.accelerometer.clearWatch(watchID);
watchID = null;
}
}

// onSuccess: Get a snapshot of the current acceleration
//
function onSuccess(acceleration) {
var element = document.getElementById('accelerometer');
element.innerHTML = 'Acceleration X: ' + acceleration.x + '<br />' +
'Acceleration Y: ' + acceleration.y + '<br />' +
'Acceleration Z: ' + acceleration.z + '<br />' +
'Timestamp: ' + acceleration.timestamp + '<br />';
}

// onError: Failed to get the acceleration
//
function onError() {
alert('onError!');
}

</script>
</head>
<body>
<div id="accelerometer">Waiting for accelerometer...</div>
</body>
</html>

关于javascript - 使用耳机间隙中的加速度计检测运动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55746772/

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