Skip to content

Instantly share code, notes, and snippets.

@mattn
Created June 30, 2009 14:39
Show Gist options
  • Save mattn/138185 to your computer and use it in GitHub Desktop.
Save mattn/138185 to your computer and use it in GitHub Desktop.
setTimeout((function(obj) {
var obj = obj;
var opacity = 0;
return function() {
if (opacity < 100) {
obj.style.MozOpaticy = opacity;
opacity += 5;
setTimeout(arguments.callee, 100);
}
}
})(obj), 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment