User:Greenitthe/timeless.js: Difference between revisions

From IdleOn MMO Wiki
imported>Greenitthe
No edit summary
imported>Greenitthe
No edit summary
Line 1: Line 1:
var images = ['https://static.miraheze.org/idleonwiki/2/26/Background.png', 'https://static.miraheze.org/idleonwiki/0/07/Desert_bg1.png'];
var images = ['https://static.miraheze.org/idleonwiki/2/26/Background.png', 'https://static.miraheze.org/idleonwiki/0/07/Desert_bg1.png'];
var bgElemStyle = document.getElementById('mw-content-container').style
var bgElemStyle = document.getElementById('mw-content-container').style
bgElem.background = ('url(' + images[Math.floor(Math.random() * images.length)] + ') no-repeat center center fixed');
bgElemStyle.background = ('url(' + images[Math.floor(Math.random() * images.length)] + ') no-repeat center center fixed');
bgElem.webkitBackgroundSize = 'cover';
bgElemStyle.webkitBackgroundSize = 'cover';
bgElem.mozBackgroundSize = 'cover';
bgElemStyle.mozBackgroundSize = 'cover';
bgElem.oBackgroundSize = 'cover';
bgElemStyle.oBackgroundSize = 'cover';
bgElem.backgroundSize = 'cover';
bgElemStyle.backgroundSize = 'cover';

Revision as of 18:10, 18 November 2020

var images = ['https://static.miraheze.org/idleonwiki/2/26/Background.png', 'https://static.miraheze.org/idleonwiki/0/07/Desert_bg1.png'];
var bgElemStyle = document.getElementById('mw-content-container').style
bgElemStyle.background = ('url(' + images[Math.floor(Math.random() * images.length)] + ') no-repeat center center fixed');
bgElemStyle.webkitBackgroundSize = 'cover';
bgElemStyle.mozBackgroundSize = 'cover';
bgElemStyle.oBackgroundSize = 'cover';
bgElemStyle.backgroundSize = 'cover';