Created
February 17, 2016 18:40
-
-
Save ayamflow/ca1be80f3c99b12d0224 to your computer and use it in GitHub Desktop.
Accelerometer
This file contains 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
$(window).on('devicemotion', this._onOrientation); | |
_onOrientation: function(event) { | |
var x = 0.25 * ((size.width * 0.5) - (event.originalEvent.accelerationIncludingGravity.y * size.width)); | |
var y = 0.25 * ((size.height * 0.5) - (event.originalEvent.accelerationIncludingGravity.x * size.height)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment