Created
October 20, 2013 15:05
-
-
Save xingmolu/7070796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var SHAKE_THRESHOLD = xxx; | |
var last_update = 0; | |
var x, y, z, last_x, last_y, last_z; | |
function deviceMotionHandler(eventData) { | |
var acceleration =eventData.accelerationIncludingGravity; | |
var curTime = newDate().getTime(); | |
if ((curTime - lastUpdate)> 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("shaked!"); | |
} | |
last_x = x; | |
last_y = y; | |
last_z = z; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment