Skip to content

Instantly share code, notes, and snippets.

@TheBits
Created September 13, 2010 20:18
Show Gist options
  • Save TheBits/577952 to your computer and use it in GitHub Desktop.
Save TheBits/577952 to your computer and use it in GitHub Desktop.
var a = 10;
loop = setInterval( fadeout, 100 );
function fadeout() {
if( a > 0 ) {
a -= 2;
alert(a/10)
} else {
clearInterval( loop );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment