Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
Line 31: Line 31:
else
else
{
{
return;
//newdiv.style.top = AttribHeight-408+"px";
//newdiv.style.top = AttribHeight-408+"px";
}
}

Revision as of 18:11, 16 August 2009

function columnAreaImage(){
var divFooter;
var divAttrib;
if (document.getElementById ) {
        divFooter= document.getElementById("footer");
   //     divAttrib= document.getElementById("panel");
    } else if (document.all ) {
        divFooter= document.all["footer"];
   //     divAttrib= document.all["panel"];
    } 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";

   var footHeight = (divFooter.offsetHeight)+(divFooter.offsetTop);
   var AttribHeight = 1100;//(divAttrib.offsetHeight)+(divAttrib.offsetTop);
   if(footHeight > AttribHeight)
{
newdiv.style.top = footHeight -408+"px";
}
else
{
return;
//newdiv.style.top = AttribHeight-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);