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

js实现手机摇一摇

时间:2014-12-12 16:30:27      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   on   bs   cti   ad   as   



//手机摇一摇 ----------------------------------------------------------


init();
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("摇动了");
                    media.setAttribute("src", "http://211.148.5.228:8002/Pages/test/Kalimba.mp3");
                    media.load();
                    media.play();  
                }
                last_x = x;
                last_y = y;
                last_z = z;
            }
        }

js实现手机摇一摇

标签:http   io   ar   sp   on   bs   cti   ad   as   

原文地址:http://www.cnblogs.com/dearxinli/p/4159758.html

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