美文网首页
JS devicemotion事件监控手机晃动

JS devicemotion事件监控手机晃动

作者: 小和和Saki | 来源:发表于2015-08-26 14:06 被阅读4420次
    <script type="text/javascript">
        var SHAKE_THRESHOLD = 3000;
        var last_update = 0;
        var x = y = z = last_x = last_y = last_z = 0;
        function init() {
            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) {
                    alert("摇动了");
                }
                last_x = x;
                last_y = y;
                last_z = z;
            }
        }
    </script>
    

    相关文章

      网友评论

          本文标题:JS devicemotion事件监控手机晃动

          本文链接:https://www.haomeiwen.com/subject/fsshcttx.html