Skip to content

Instantly share code, notes, and snippets.

@spite
Created April 2, 2015 09:12
Show Gist options
  • Save spite/044e89f7f42ddfaaab65 to your computer and use it in GitHub Desktop.
Save spite/044e89f7f42ddfaaab65 to your computer and use it in GitHub Desktop.
Like tears in the rain
(function() {
var b = document.body;
document.addEventListener(
'touchstart', function(evt) {
var o = parseFloat( getComputedStyle( b, null ).getPropertyValue( 'opacity' ) );
b.style.opacity = o - .005;
}
);
} )();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment