Skip to content

Instantly share code, notes, and snippets.

@tkojitu
Last active August 29, 2015 13:59
Show Gist options
  • Save tkojitu/10951421 to your computer and use it in GitHub Desktop.
Save tkojitu/10951421 to your computer and use it in GitHub Desktop.
<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>
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