Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
(cleanup)
Line 1: Line 1:
function columnAreaImage(){
function columnAreaImage(){
var divFooter;
  var divFooter;
var divAttrib;
  if (document.getElementById ) {
if (document.getElementById ) {
    divFooter= document.getElementById("footer");
        divFooter= document.getElementById("footer");
  } else if (document.all ) {
  //    divAttrib= document.getElementById("panel");
    divFooter= document.all["footer"];
    } else if (document.all ) {
  } else {
        divFooter= document.all["footer"];
     return;
  //     divAttrib= document.all["panel"];
  }
    } else {
 
        return;
  var footHeight = (divFooter.offsetHeight)+(divFooter.offsetTop);
}
  if(footHeight > 1100)
  {
    newdiv.style.top = footHeight - 408+"px";
  }
  else
  {
    return;
  }


 
  var newdiv = document.createElement('div');
  var newdiv = document.createElement('div');
  newdiv.setAttribute('id', 'columnAreaImage');
  newdiv.setAttribute('id', 'columnAreaImage');
  newdiv.style.backgroundImage = "url(/images/a/aa/VectorSidebarInfosphere.png)";
  newdiv.style.backgroundImage = "url(/images/a/aa/VectorSidebarInfosphere.png)";
  newdiv.style.backgroundPosition = "bottom left";
  newdiv.style.backgroundPosition = "bottom left";
  newdiv.style.backgroundRepeat = "no-repeat";
  newdiv.style.backgroundRepeat = "no-repeat";
 
 
 
 
 
 
  newdiv.style.position = "absolute";
  newdiv.style.position = "absolute";
 
 
  newdiv.style.left = "0px";
  var footHeight = (divFooter.offsetHeight)+(divFooter.offsetTop);
  newdiv.style.width = "377px";
  var AttribHeight = 1100;//(divAttrib.offsetHeight)+(divAttrib.offsetTop);
  newdiv.style.height = "408px";
  if(footHeight > AttribHeight)
  newdiv.style.zIndex = "-1"
{
newdiv.style.top = footHeight -408+"px";
}
else
{
return;
//newdiv.style.top = AttribHeight-408+"px";
}
    
    
  newdiv.style.left = "0px";
   document.body.appendChild(newdiv);
  newdiv.style.width = "377px";
  newdiv.style.height = "408px";
  newdiv.style.zIndex = "-1"
   // newdiv.innerHTML = "nothing";
  document.body.appendChild(newdiv);
}
}
   
   
addOnloadHook(columnAreaImage);
addOnloadHook(columnAreaImage);

Revision as of 18:15, 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 footHeight = (divFooter.offsetHeight)+(divFooter.offsetTop);
  if(footHeight > 1100)
  {
    newdiv.style.top = footHeight - 408+"px";
  }
  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.left = "0px";
  newdiv.style.width = "377px";
  newdiv.style.height = "408px";
  newdiv.style.zIndex = "-1"
  
  document.body.appendChild(newdiv);
}
 
addOnloadHook(columnAreaImage);