HTML5实现摇一摇的功能(实测后)

利用html5实现类似微信的手机摇一摇功能,并播放音乐。
1、deviceOrientation:封装了方向传感器数据的事件,可以获取手机静止状态下的方向数据,例如手机所处角度、方位、朝向等。
2、deviceMotion:封装了运动传感器数据的事件,可以获取手机运动状态下的运动加速度等数据。

不多说直接上代码,
Javascript:

[javascript]view plain copy

  1. var SHAKE_THRESHOLD = 3000;
  2. var last_update = 0;
  3. var x = y = z = last_x = last_y = last_z = 0;
  4. function init() {
  5. if (window.DeviceMotionEvent) {
  6. window.addEventListener('devicemotion', deviceMotionHandler, false);
  7. } else {
  8. alert('not support mobile event');
  9. }
  10. }
  11. function deviceMotionHandler(eventData) {
  12. var acceleration = eventData.accelerationIncludingGravity;
  13. var curTime = new Date().getTime();
  14. if ((curTime - last_update) > 100) {
  15. var diffTime = curTime - last_update;
  16. last_update = curTime;
  17. x = acceleration.x;
  18. y = acceleration.y;
  19. z = acceleration.z;
  20. var speed = Math.abs(x + y + z - last_x - last_y - last_z) / diffTime * 10000;
  21. if (speed > SHAKE_THRESHOLD) {
  22. alert("摇动了");
  23. media.setAttribute("src", "http://211.148.5.228:8002/Pages/test/Kalimba.mp3");
  24. media.load();
  25. media.play();
  26. }
  27. last_x = x;
  28. last_y = y;
  29. last_z = z;
  30. }
  31. }

Html:

[html]view plain copy
  1. 摇一摇功能 - 锐客网
  2. 用力摇一摇你手机

IOS 测试:Safari 弹框\不播放音乐, Chroma 弹框\不播放音乐,UC弹框\不播放音乐
【HTML5实现摇一摇的功能(实测后)】 Andriod 测试:UC弹框\播放音乐,Chroma 弹框\播放音乐,内置浏览器 弹框\播放音乐

    推荐阅读