Guido: CrossBrowser Positionierung von grafischen Objekten als Hintergrundbilder

Beitrag lesen

Moin,
mein persöhnlicher Faforit, Doc Ozone, hat diese "Spielerei" vor einiger Zeit eingesetzt. Du findest bei ihm im Archiv die umgesetzten Sachen (SPOT...)
Ein Auszug aus der Initialisierung der Seite:

<!--DocOzone's Javascript code, copyright 1998
//  Feel free to borrow and modify this javascript,
//  but be sure leave this credit in the source!
//  (Please note, the CODE, not the images! :)
//  Your pal,   -Dr. Thaddeus Ozone-
//        http://www.ozones.com/
//window.onerror=null;

window.onResize="history.go(0); setup()";
netscape = (document.layers) ? 1:0
goodIE = (document.all) ? 1:0
var layerstart = "document.all.";
var styled = ".style.";
var count = 0;
var XCpos = 10;
var YCpos = 10;

function setup() {
if (goodIE) {
   var layerstart = "document.all.";
   var styled = ".style.";
   windowWidth=document.body.clientWidth;
   windowHeight=document.body.clientHeight; }
else if (netscape) {
     windowWidth = window.innerWidth-16;
     windowHeight = window.innerHeight;
      var layerstart = "document.";
      var styled = ".";}
var centertop = ((windowHeight)/2);
var centerleft = ((windowWidth)/2);
}

Was du mit Var center xxx machst ist ja deine Sache 8-)

Bye Guido