Last active
August 29, 2015 13:59
-
-
Save tkojitu/10951421 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<html> | |
<head> | |
<script src="oridigits.js"></script> | |
</head> | |
<body onload="onLoad();"> | |
<table border=1px> | |
<tr> | |
<td>alpha</td><td id="alpha">0</td> | |
</tr> | |
<tr> | |
<td>beta</td><td id="beta">0</td> | |
</tr> | |
<tr> | |
<td>gamma</td><td id="gamma">0</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
This file contains hidden or 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
function onLoad() { | |
window.addEventListener("deviceorientation", onDeviceOrientation, false); | |
} | |
function onDeviceOrientation(event) { | |
document.getElementById("alpha").innerHTML = event.alpha; | |
document.getElementById("beta").innerHTML = event.beta; | |
document.getElementById("gamma").innerHTML = event.gamma; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment