Skip to content

Instantly share code, notes, and snippets.

@hoox
Last active August 29, 2015 14:27
Show Gist options
  • Save hoox/caab2a9811d1928f9c60 to your computer and use it in GitHub Desktop.
Save hoox/caab2a9811d1928f9c60 to your computer and use it in GitHub Desktop.
Ambient Light API - "Device Light" Event Listner
window.addEventListener('devicelight', function(event) {
var media = document.querySelectorAll("img");
for (var i=0;i<media.length;i++) {
media[i].style.opacity = event.value / 100;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment