Difference between revisions of "MediaWiki:Vector.js"

From The Infosphere, the Futurama Wiki
Jump to navigation Jump to search
Line 11: Line 11:
    
    
   newdiv.style.left = 0px
   newdiv.style.left = 0px
   newdiv.style.top = 800px;//pageSize - 408;
   newdiv.style.top = 1200px;//pageSize - 408;
   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.innerHTML = "<br/><br/><br/><br/><br/><br/><br/>";
   newdiv.innerHTML = "test<br/><br/><br/><br/><br/><br/><br/>";
   document.body.appendChild(newdiv);
   document.body.appendChild(newdiv);
}
}
   
   
addOnloadHook(columnAreaImage);
addOnloadHook(columnAreaImage);

Revision as of 15:42, 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.width = 377;
   newdiv.style.height = 408;
   
   
   newdiv.style.left = 0px
   newdiv.style.top = 1200px;//pageSize - 408;
   newdiv.style.backgroundImage = "url(/images/a/aa/VectorSidebarInfosphere.png)";
   newdiv.style.backgroundPosition = "bottom left";
   newdiv.style.backgroundRepeat = "no-repeat";
   newdiv.innerHTML = "test<br/><br/><br/><br/><br/><br/><br/>";
   document.body.appendChild(newdiv);
}
 
addOnloadHook(columnAreaImage);