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

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
(Blanked the page)
Line 1: Line 1:
function columnAreaImage(){
alert('debug'):
  if(document.title.split(" ")[0] == "Preferences")
  {
    return;
  }
  var divFooter;
  if (document.getElementById ) {
    divFooter= document.getElementById("footer");
  } else if (document.all ) {
    divFooter= document.all["footer"];
  } else {
    return;
  }


  var divAffiliates;
  if (document.getElementById ) {
    divAffiliates= document.getElementById("p-affiliates");
  } else if (document.all ) {
    divAffiliates= document.all["p-affiliates"];
  }
  var el = document.getElementById("columnAreaImage");
  var newdiv = el;
  if(el == null)
  {
    newdiv = document.createElement('div');
    newdiv.setAttribute('id', 'columnAreaImage');
  }
  var footHeight = (divFooter.offsetHeight) + (divFooter.offsetTop);
  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)
  {
    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);
  }
}

Revision as of 04:49, 25 January 2014

function columnAreaImage(){
alert('debug'):
  if(document.title.split(" ")[0] == "Preferences")
  {
    return;
  }
 
  var divFooter;
  if (document.getElementById ) {
    divFooter= document.getElementById("footer");
  } else if (document.all ) {
    divFooter= document.all["footer"];
  } else {
    return;
  }

  var divAffiliates;
  if (document.getElementById ) {
    divAffiliates= document.getElementById("p-affiliates");
  } else if (document.all ) {
    divAffiliates= document.all["p-affiliates"];
  }
 
  var el = document.getElementById("columnAreaImage");
  var newdiv = el;
  if(el == null)
  {
    newdiv = document.createElement('div');
    newdiv.setAttribute('id', 'columnAreaImage');
  }
 
  var footHeight = (divFooter.offsetHeight) + (divFooter.offsetTop);
  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)
  {
    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);
  }
}