Skip to content

Instantly share code, notes, and snippets.

@ayamflow
Created February 17, 2016 18:40
Show Gist options
  • Save ayamflow/ca1be80f3c99b12d0224 to your computer and use it in GitHub Desktop.
Save ayamflow/ca1be80f3c99b12d0224 to your computer and use it in GitHub Desktop.
Accelerometer
$(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