-
-
Save malkafly/26b07510e4069ecdddbd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('*').each(function () { | |
var colors = ['aqua', 'blue', 'fuchsia', 'gray', 'green', 'lime', 'maroon', 'navy', 'olive', 'orange', 'purple', 'red', 'silver', 'teal', 'yellow']; | |
$(this).css('background-color', colors[Math.floor(Math.random()*colors.length)]); | |
$(this).css('font-family', 'Comic Sans MS'); | |
}); | |
$('img').each(function () { | |
var imgs = [ | |
'http://www.animatedgif.net/devilish/coolskul.gif', | |
'http://www.animatedgif.net/devilish/devildance_e0.gif', | |
'http://www.animatedgif.net/devilish/diablo_standing_e0.gif', | |
'http://www.animatedgif.net/devilish/skull4_e0.gif', | |
'http://www.animatedgif.net/cartoons/critter_e0.gif', | |
'http://www.animatedgif.net/cartoons/macarena_e0.gif', | |
'http://www.animatedgif.net/people/jackhammer_e0.gif', | |
'http://www.animatedgif.net/people/babies/dancing_baby_e0.gif', | |
'http://www.animatedgif.net/sports/equestrian_e0.gif', | |
'http://www.animatedgif.net/art/home.gif', | |
'http://www.animatedgif.net/welcome/bi-plane_e0.gif', | |
'http://www.animatedgif.net/welcome/ctcannon_e0.gif', | |
'http://www.animatedgif.net/welcome/wspider02.gif', | |
'http://www.animatedgif.net/welcome/wc178x28_e0.gif', | |
'http://www.animatedgif.net/welcome/welcome01_e0.gif', | |
'http://www.animatedgif.net/email/anim0044-1_e0.gif', | |
'http://www.animatedgif.net/computers/hacky_e0.gif', | |
'http://www.animatedgif.net/seasonal/xmas/jalsnowglobe_e0.gif', | |
'http://www.animatedgif.net/seasonal/halloween/kvsmpumpkin_e0.gif', | |
'http://www.animatedgif.net/fireexplosions/fireline_e0.gif', | |
'http://www.animatedgif.net/fireexplosions/flash5_e0.gif', | |
'http://www.123gifs.eu/free-gifs/underconstruction/underconstruction-0085.gif', | |
'http://www.animatedgif.net/sitemessages/guestbook/guest-1_e0.gif', | |
'http://www.animatedgif.net/clockscounters/counter1_e0.gif', | |
'http://www.animatedgif.net/games/sdbpacman_e0.gif', | |
'http://www.animatedgif.net/games/rbicetile_e0.gif', | |
'http://i1187.photobucket.com/albums/z398/djcubstud/CUBSTUD%20GIFS/Homo-dancetroup.gif', | |
'http://tonygifsjavas.com.br/galeria_gifs_animes/construcao/images/construcao_01.gif' | |
]; | |
if (!$(this).hasClass('logo') && !$(this).hasClass('img-logo') && $(this).attr('itemprop') != 'logo') | |
$(this).attr('src', imgs[Math.floor(Math.random()*imgs.length)]); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment