dr.colossos: onmouseover problem

Beitrag lesen

Hi,

ein Ansatz.

#bild
{
position: absolute:
top: 0px;
right: 0px;
}

<img src="bild.typ" id="bild" onmouseover="resize(this)">

function resize(bild)
{
  bild.src.width = parseInt(bild.src.width) * 2 + "px";
  bild.src.height= parseInt(bild.src.height) * 2 + "px";
// evtl. statt ".src" ".style", da bin ich mir gerade nciht sicher
}

Von der Idee her könnte das passen ...