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

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
Line 24: Line 24:
   }
   }
   
   
   newdiv.style.top = height - 408+"px";
   //newdiv.style.top = height - 408+"px";
    
    
   if(el == null)
   if(el == null)
Line 36: Line 36:
     newdiv.style.left = "0px";
     newdiv.style.left = "0px";
     newdiv.style.width = "377px";
     newdiv.style.width = "377px";
     newdiv.style.height = "408px";
     newdiv.style.height = "100%";
     newdiv.style.zIndex = "-1"
     newdiv.style.zIndex = "-1"
   
   

Revision as of 05:32, 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 = "100%";
    newdiv.style.zIndex = "-1"
 
    document.body.appendChild(newdiv);
  }
}
 
addOnloadHook(columnAreaImage);
 
addOnloadHook(function (){
  window.onresize = columnAreaImage; 
});