Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
Line 19: Line 19:
    
    
   newdiv.style.position = "absolute";
   newdiv.style.position = "absolute";
   newdiv.style.top = Number(divFooter.style.height.split("px")[0])+Number(divFooter.style.top.split("px")[0])-408+"px";
   newdiv.style.top = Number(divFooter.style.offsetHeight.split("px")[0])+Number(divFooter.style.offsetTop.split("px")[0])-408+"px";
    
    
   newdiv.style.left = "0px";
   newdiv.style.left = "0px";

Revision as of 17:34, 16 August 2009

function columnAreaImage(){
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');
   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.top = Number(divFooter.style.offsetHeight.split("px")[0])+Number(divFooter.style.offsetTop.split("px")[0])-408+"px";
  
   newdiv.style.left = "0px";
   newdiv.style.width = "377px";
   newdiv.style.height = "408px";
   newdiv.style.zIndex = "-1"
  // newdiv.innerHTML = "nothing";
   document.body.appendChild(newdiv);
}
 
addOnloadHook(columnAreaImage);