js phone shake

The last time I was playing a mobile game, I saw that there was a shake lottery in it. The game was made on the web, so I found some code on the Internet to implement the JS shake function.

The specific content is not explained in detail, just upload the code directly

HTML code

<audio id="musicBox" src=""></audio>  

 JS code

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("Feel the shake, I'm about to fire");
		            var media = document.getElementById("musicBox"); //Get the audio control
		            media.setAttribute("src", "imgy/shake_sound.mp3");
		            media.load(); //load audio
		            media.play(); //Play audio
		        }
		        last_x = x;
		        last_y = y;
		        last_z = z;
		    }
		}

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326399719&siteId=291194637