Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created April 5, 2017 07:33
Show Gist options
  • Save etoxin/85fad56af1670d1dad6a21d68a3d189b to your computer and use it in GitHub Desktop.
Save etoxin/85fad56af1670d1dad6a21d68a3d189b to your computer and use it in GitHub Desktop.
window.addEventListener("deviceorientation", function (e) {
var all = document.querySelectorAll('*');
for(var i = 0;i < all.length;i++) {
all[i].style.transform = 'rotateX('+e.alpha+'deg) rotateY('+e.gamma+'deg) rotateX('+e.beta+'deg)';
}
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment