Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
m
(cleaner)
Line 47: Line 47:
   if(wgTitle == "Main Page")
   if(wgTitle == "Main Page")
   {
   {
     var rand = Math.random();
     var mainRightBox = getElementbyClass(document.getElementsByTagName("td"), "mainRightBox");
    if(rand>0.6666)
    var opt = new Array();
    {
    opt[0]="url(/images/4/45/VectorMainRightLeela.png)";
      var mainRightBox = getElementbyClass(document.getElementsByTagName("td"), "mainRightBox");
     opt[1]="url(/images/0/03/VectorMainRightProf.png)";
      mainRightBox[0].style.backgroundImage = "url(/images/4/45/VectorMainRightLeela.png)";
    opt[2]="url(/images/b/b5/VectorMainRightBender.png)";
     }
     mainRightBox[0].style.backgroundImage = randomise(opt);
    else if(rand>0.3333)
      
    {
     var mainBottomBox = getElementbyClass(document.getElementsByTagName("td"), "mainBottomBox");
      var mainRightBox = getElementbyClass(document.getElementsByTagName("td"), "mainRightBox");
    // opt = new Array();
      mainRightBox[0].style.backgroundImage = "url(/images/0/03/VectorMainRightProf.png)";
    opt[0]="url(/images/e/ee/VectorMainBottomToad.png)";
     }
     opt[1]="url(/images/5/57/VectorMainBottomHedonism.png)";
    rand = Math.random();
    opt[2]="url(/images/a/aa/VectorMainBottomHermes.png)";
     if(rand>0.6666)
     mainBottomBox[0].style.backgroundImage = randomise(opt);
     {
      
      var mainBottomBox = getElementbyClass(document.getElementsByTagName("td"), "mainBottomBox");
     var mainLeftBox = getElementbyClass(document.getElementsByTagName("td"), "mainLeftBox");
      mainBottomBox[0].style.backgroundImage = "url(/images/5/57/VectorMainBottomHedonism.png)";
    // opt = new Array();
     }
    opt[0]="url(/images/d/d6/VectorMainLeftFry.png)";
    else if(rand>0.3333)
     opt[1]="url(/images/0/0b/VectorMainLeftZoidberg.png)";
    {
    opt[2]="url(/images/0/0b/VectorMainLeftAmy.png)";
      var mainBottomBox = getElementbyClass(document.getElementsByTagName("td"), "mainBottomBox");
     mainLeftBox[0].style.backgroundImage = randomise(opt);
      mainBottomBox[0].style.backgroundImage = "url(/images/a/aa/VectorMainBottomHermes.png)";
     }
    rand = Math.random();
     if(rand>0.6666)
     {
      var mainLeftBox = getElementbyClass(document.getElementsByTagName("td"), "mainLeftBox");
      mainLeftBox[0].style.backgroundImage = "url(/images/0/0b/VectorMainLeftZoidberg.png)";
     }
    else if(rand>0.3333)
    {
      var mainLeftBox = getElementbyClass(document.getElementsByTagName("td"), "mainLeftBox");
      mainLeftBox[0].style.backgroundImage = "url(/images/0/0b/VectorMainLeftAmy.png)";
     }
   }
   }
}
}
   
   
addOnloadHook(randomiseMainPics);
addOnloadHook(randomiseMainPics);

Revision as of 12:08, 22 August 2009

function columnAreaImage(){
  if(document.title.split(" ")[0] == "Preferences")
  {
    return;
  }

  var divFooter;
  if (document.getElementById ) {
    divFooter= document.getElementById("footer");
  } else if (document.all ) {
    divFooter= document.all["footer"];
  } else {
    return;
  }
  
  var newdiv = document.createElement('div');
  newdiv.setAttribute('id', 'columnAreaImage');
  
  var footHeight = (divFooter.offsetHeight)+(divFooter.offsetTop);
  if(footHeight > 900)
  {
    newdiv.style.top = footHeight - 408+"px";
  }
  else
  {
    return;
  }

  newdiv.style.backgroundImage = "url(/images/a/aa/VectorSidebarInfosphere.png)";
  newdiv.style.backgroundPosition = "bottom left";
  newdiv.style.backgroundRepeat = "no-repeat";
  
  newdiv.style.position = "absolute";
  
  newdiv.style.left = "0px";
  newdiv.style.width = "377px";
  newdiv.style.height = "408px";
  newdiv.style.zIndex = "-1"
  
  document.body.appendChild(newdiv);
}
 
addOnloadHook(columnAreaImage);


function randomiseMainPics(){
  if(wgTitle == "Main Page")
  {
    var mainRightBox = getElementbyClass(document.getElementsByTagName("td"), "mainRightBox");
    var opt = new Array();
    opt[0]="url(/images/4/45/VectorMainRightLeela.png)";
    opt[1]="url(/images/0/03/VectorMainRightProf.png)";
    opt[2]="url(/images/b/b5/VectorMainRightBender.png)";
    mainRightBox[0].style.backgroundImage = randomise(opt);
    
    var mainBottomBox = getElementbyClass(document.getElementsByTagName("td"), "mainBottomBox");
    // opt = new Array();
    opt[0]="url(/images/e/ee/VectorMainBottomToad.png)";
    opt[1]="url(/images/5/57/VectorMainBottomHedonism.png)";
    opt[2]="url(/images/a/aa/VectorMainBottomHermes.png)";
    mainBottomBox[0].style.backgroundImage = randomise(opt);
    
    var mainLeftBox = getElementbyClass(document.getElementsByTagName("td"), "mainLeftBox");
    // opt = new Array();
    opt[0]="url(/images/d/d6/VectorMainLeftFry.png)";
    opt[1]="url(/images/0/0b/VectorMainLeftZoidberg.png)";
    opt[2]="url(/images/0/0b/VectorMainLeftAmy.png)";
    mainLeftBox[0].style.backgroundImage = randomise(opt);
  }
}
 
addOnloadHook(randomiseMainPics);