ap.onAccelerometerChange 监听重力感应变化
优质
小牛编辑
123浏览
2023-12-01
ap.onAccelerometerChange(CALLBACK)
监听重力感应变化
CALLBACK 参数说明
名称 | 类型 | 描述 |
---|---|---|
x | Number | X 轴 |
y | Number | Y 轴 |
z | Number | Z 轴 |
代码示例
<script src="https://gw.alipayobjects.com/as/g/h5-lib/alipayjsapi/3.1.1/alipayjsapi.inc.min.js"></script>
<style>
.output{ display:block; max-width: 100%; overflow: auto}
</style>
<h2 class="am-ft-center">晃晃手机试试</h2>
<pre class="output"></pre>
<script>
var output = document.querySelector('#J_output');
ap.onAccelerometerChange(function(res){
output.innerHTML = '\nx: ' + res.x +
'\ny: ' + res.y +
'\nz: ' + res.z;
});
</script>