Skip to content

Instantly share code, notes, and snippets.

@NV
Created September 13, 2010 20:07
Show Gist options
  • Save NV/577931 to your computer and use it in GitHub Desktop.
Save NV/577931 to your computer and use it in GitHub Desktop.
// Re: http://twitter.com/pepelsbey/status/24410437437
var a = 10;
loop = setInterval( fadeout, 1000 );
function fadeout() {
console.log(a / 10);
if( a > 0 ) {
a -= 2;
} else {
clearInterval( loop );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment