Hintergrundbild verschieben

Dieguito

Mitglied
Leider verschiebt dies das Hintergrundbild NICHT:

Code:
<div id='hintergrund' style='width: 900px; height: 600px; padding: 0px; border: 0px; background-image: url(../pix/back_see.jpg); position: absolute; top: 0px; left: 0px;'></div>

<script type='text/javascript'>
backgroundPositionX=0; backgroundPositionY=0; 
backgroundPositionX++; backgroundPositionY++; 
document.getElementById("hintergrund").style["backgroundPosition"] = backgroundPositionX + "px " + backgroundPositionY + "px";

</script>

Was nicht stimmt an:
Code:
document.getElementById("hintergrund").style["backgroundPosition"] = backgroundPositionX + "px " + backgroundPositionY + "px";
 
Hi,

bei mir funktioniert Dein Script in folgendem Kontext:
Code:
<html>
<head>
<script type="text/javascript">
backgroundPositionX=0; backgroundPositionY=0;
function moveBG(){
  backgroundPositionX++; backgroundPositionY++;
  document.getElementById("hintergrund").style["backgroundPosition"] = backgroundPositionX + "px " + backgroundPositionY + "px";
}

window.onload = moveBG;  // Nach dem Laden verschieben
</script>
</head>
<body>
  <button onclick="moveBG();">moveBG</button>
  <div id='hintergrund' style='width: 900px; height: 600px; padding: 0px; border: 0px; background-image: url(../bilder/fussball1.jpg); position: absolute; top: 0px; left: 0px;'></div>
</body>
</html>
Ciao
Quaese
 

Neue Beiträge

Zurück