Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
(width/height not being applied)
Line 5: Line 5:
   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.backgroundPosition = "bottom left";
  newdiv.style.backgroundRepeat = "no-repeat";
    
    
   newdiv.style.width = 377px;
   newdiv.style.width = 377;
   newdiv.style.height = 408px;
   newdiv.style.height = 408;
    
    
    
    
Line 13: Line 16:
   // newdiv.style.top = 700px;//pageSize - 408;
   // newdiv.style.top = 700px;//pageSize - 408;
   // newdiv.style.position = 'absolute';
   // newdiv.style.position = 'absolute';
  newdiv.style.backgroundImage = "url(/images/a/aa/VectorSidebarInfosphere.png)";
  newdiv.style.backgroundPosition = "bottom left";
  newdiv.style.backgroundRepeat = "no-repeat";
   // newdiv.innerHTML = "nothing";
   // newdiv.innerHTML = "nothing";
   document.body.appendChild(newdiv);
   document.body.appendChild(newdiv);

Revision as of 16:15, 16 August 2009

function columnAreaImage(){
    //var pageSize = document.body.parentNode.scrollheight

        //1136=768(number bigger than background image and side buttons)+imgheight(370)
   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.width = 377;
   newdiv.style.height = 408;
   
   
  // newdiv.style.left = 0px;
  // newdiv.style.top = 700px;//pageSize - 408;
  // newdiv.style.position = 'absolute';
  // newdiv.innerHTML = "nothing";
   document.body.appendChild(newdiv);
}
 
addOnloadHook(columnAreaImage);