Hallo,
ich hab mir eine image map gebastelt.
Die Areabereiche sind alle Poligone, nun möchte ich bei mouseover ein .png Bild an der Stelle des Bereiches anzeigen lassen ohne die komplette Mapgrafik auszutauschen.
Ich hab mal ein wenig mit onmouseover herumgespielt, doch leider komme ich nicht zu dem gewünschten Ergebniss.
onmouseover="setAttribute(\'style\',\'background: transparent url(hover.png) center no-repeat; height: 40px; width: 40px; display: block;\')" onmouseout="setAttribute(\'style\',\'background: transparent;\')"
onmouseover="this.className='over'" onmouseout="this.className='out'"
Ist mein Vorhaben überhaupt möglich, hat jemand schon einmal ein ähnliches Problem gehabt?
ich hab mir eine image map gebastelt.
Die Areabereiche sind alle Poligone, nun möchte ich bei mouseover ein .png Bild an der Stelle des Bereiches anzeigen lassen ohne die komplette Mapgrafik auszutauschen.
Code:
<img src="grafik.jpg" usemap="#map" width="300" height="240"> <map name="map"> <area shape="poly" coords="12,23,..." href="seite.html" alt="text"> ... </map>
onmouseover="setAttribute(\'style\',\'background: transparent url(hover.png) center no-repeat; height: 40px; width: 40px; display: block;\')" onmouseout="setAttribute(\'style\',\'background: transparent;\')"
onmouseover="this.className='over'" onmouseout="this.className='out'"
Ist mein Vorhaben überhaupt möglich, hat jemand schon einmal ein ähnliches Problem gehabt?
Kommentar