欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

基于html5 DeviceOrientation 实现微信摇一摇功能

程序员文章站 2023-10-24 10:19:05
微信摇一摇添加好久,很多朋友都在玩,那么基于html5 DeviceOrientation 如何实现微信摇一摇功能的呢?下面由脚本之家小编把详细内容分享给大家,供大家参考。... 15-09-25...

在html5中,deviceorientation特性所提供的devicemotion事件封装了设备的运动传感器时间,通过改时间可以获取设备的运动状态、加速度等数据(另还有deviceorientation事件提供了设备角度、朝向等信息)。

而通过devicemotion对设备运动状态的判断,则可以帮助我们在网页上就实现“摇一摇”的交互效果。

运动事件监听


复制代码
代码如下:

if (window.devicemotionevent) {
window.addeventlistener('devicemotion', devicemotionhandler, false);
} else {
alert('你的手机太差了,买个新的吧。');
}

获取加速度信息

“摇一摇”的动作既“一定时间内设备了一定距离”,因此通过监听上一步获取到的x, y, z 值在一定时间范围内的变化率,即可进行设备是否有进行晃动的判断。而为了防止正常移动的误判,需要给该变化率设置一个合适的临界值。


复制代码
代码如下:

function devicemotionhandler(eventdata) {
var acceleration = eventdata.accelerationincludinggravity;
var curtime = new date().gettime();
if ((curtime - last_update) > 100) {
var difftime = curtime - last_update;
last_update = curtime;
x = acceleration.x;
y = acceleration.y;
z = acceleration.z;
var speed = math.abs(x + y + z - last_x - last_y - last_z) / difftime * 10000;
var status = document.getelementbyid("status");
if (speed > shake_threshold) {
doresult();
}
last_x = x;
last_y = y;
last_z = z;
}
}

效果如图所示:

基于html5 DeviceOrientation 实现微信摇一摇功能