Skip to content

Instantly share code, notes, and snippets.

@stsysr
Created October 21, 2014 06:18
Show Gist options
  • Save stsysr/0f0ac6361b123dd6c34f to your computer and use it in GitHub Desktop.
Save stsysr/0f0ac6361b123dd6c34f to your computer and use it in GitHub Desktop.
端末の傾きを取得
window.addEventListener('deviceorientation', function(event) {
console.log(event.alpha + ' : ' + event.beta + ' : ' + event.gamma);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment