MediaWiki:Nimbus.js

From Destinypedia, the Destiny wiki

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* Any JavaScript here will be loaded for users using the Nimbus skin */

/* Random logo */
$(function() {
var logos = [

'b/b6/Rotation_logo_speaker.png',
'4/4e/Rotation_logo_Zavala.png',
'2/2c/Rotation_logo_Cayde.png',
'4/4f/Rotation_logo_Ikora.png',
'd/d1/Rotation_logo_Ghaul.png',
'9/9c/Rotation_logo_Hawthorne.png',
'b/bc/Destinypedia_rotation_logo_Ana.png',

];
$('#site-logo a').css('background-image', 'url(https://destiny.wiki.gallery/images/' + logos[Math.floor(Math.random() * logos.length)] + ')');
});