Difference between revisions of "User:Quolnok/vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
Line 5: Line 5:
   }
   }
   
   
/*
  var height;
var height;
  if (window.innerHeight) {
    var width;
      height = window.innerHeight;
    if (window.innerHeight) {
        height = window.innerHeight;
        width = window.innerWidth;
    }
    else if (document.documentElement.clientHeight && (document.documentElement.clientHeight > 0)) {
        height = document.documentElement.clientHeight;
        width = document.documentElement.clientWidth;
    }
    else {
        height = document.body.clientHeight;
        width = document.body.clientWidth;
    }*/
 
 
  var divFooter;
  if (document.getElementById ) {
    divFooter= document.getElementById("footer");
  } else if (document.all ) {
    divFooter= document.all["footer"];
  } else {
    return;
   }
   }
 
   else if (document.documentElement.clientHeight && (document.documentElement.clientHeight > 0)) {
  var divAffiliates;
      height = document.documentElement.clientHeight;
   if (document.getElementById ) {
   }
    divAffiliates= document.getElementById("p-AFFILIATES");
  else {
   } else if (document.all ) {
      height = document.body.clientHeight;
    divAffiliates= document.all["p-AFFILIATES"];
   }
   }
   
   
Line 46: Line 24:
   }
   }
   
   
   var footHeight = (divFooter.offsetHeight) + (divFooter.offsetTop);
   newdiv.style.top = height - 408+"px";
  var affilHeight = (divAffiliates.offsetHeight) + (divAffiliates.offsetTop);
    
  if(footHeight > affilHeight)
  {
    newdiv.style.top = footHeight - 408+"px";
  }
  else
  {
    newdiv.style.top = affilHeight - 408+"px";
   }
   if(el == null)
   if(el == null)
   {
   {

Revision as of 05:24, 8 March 2010

function columnAreaImage(){
  if(document.title.split(" ")[0] == "Preferences")
  {
    return;
  }
 
  var height;
  if (window.innerHeight) {
      height = window.innerHeight;
  }
  else if (document.documentElement.clientHeight && (document.documentElement.clientHeight > 0)) {
      height = document.documentElement.clientHeight;
  }
  else {
      height = document.body.clientHeight;
  }
 
  var el = document.getElementById("columnAreaImage");
  var newdiv = el;
  if(el == null)
  {
    newdiv = document.createElement('div');
    newdiv.setAttribute('id', 'columnAreaImage');
  }
 
  newdiv.style.top = height - 408+"px";
  
  if(el == null)
  {
    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);
 
addOnloadHook(function (){
  window.onresize = columnAreaImage; 
});