Skip to content

Instantly share code, notes, and snippets.

@ikeryou
Created September 8, 2016 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikeryou/1c1f9ff1dbbab6ad4d31c6d2de9409b0 to your computer and use it in GitHub Desktop.
Save ikeryou/1c1f9ff1dbbab6ad4d31c6d2de9409b0 to your computer and use it in GitHub Desktop.
スマホの加速度取得
window.ondevicemotion = _eDevicemotion;
function _eDevicemotion(e) {
var accelX = e.acceleration.x;
var accelY = e.acceleration.y;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment