码迷,mamicode.com
首页 > 移动开发 > 详细

手机浏览器摇一摇

时间:2019-12-19 09:30:25      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:clu   charset   dia   add   UNC   gravity   ble   ftime   cap   

手机浏览器摇一摇

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>摇一摇</title>

</head>

<body>
<p>摇一摇!</p>
<audio style="display: none;" src="http://downsc.chinaz.net/files/download/sound1/201410/5018.mp3" id="musicBox" preload="preload"  controls></audio>

<script>
  var SHAKE_THRESHOLD = 3000;
  var last_update = 0;
  var x=y=z=last_x=last_y=last_z=0;
  var  media;
  media= document.getElementById("musicBox");
  function init(){
    last_update=new Date().getTime();
    if (window.DeviceMotionEvent) {
      window.addEventListener(devicemotion,deviceMotionHandler, false);
    } else{
      alert(not support mobile event);
    }
  }
  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;
      if (speed > SHAKE_THRESHOLD) {
        media.play();
        alert("已经触发了摇一摇");
      }
      last_x = x;
      last_y = y;
      last_z = z;
    }
  }
  window.onload = function(){
    init();
  }
</script>
</body>
</html>

 

手机浏览器摇一摇

标签:clu   charset   dia   add   UNC   gravity   ble   ftime   cap   

原文地址:https://www.cnblogs.com/fps2tao/p/12065814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!