Skip to content

Instantly share code, notes, and snippets.

@Showtimes
Created April 16, 2013 22:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Showtimes/5400098 to your computer and use it in GitHub Desktop.
Save Showtimes/5400098 to your computer and use it in GitHub Desktop.
$(window).load(function(){
$('body').ready(function() {
$('logo.png').hide();
$('logo.png').each(function(i) {
if (this.complete) {
$(this).fadeIn();
} else {
$(this).load(function() {
$(this).fadeIn(2000);
});
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment