Morgen,
viele können es sicher nicht mehr hören, aber ich versuche an zwei Stellen mittels einem MouseOver verschiedene Bilder auszutauschen und habe noch nichts darüber gefunden. Vermutlich hab ichs überlesen.
<script language="JavaScript" type="text/javascript">
<!--
function preLoad(){
if(document.images){
Highlight1 = new Image(); Highlight1.src = "./images/ampel_rot.gif";
Highlight2 = new Image(); Highlight2.src = "./images/ampel_orange.gif";
Highlight3 = new Image(); Highlight3.src = "./images/ampel_gelb.gif";
Highlight4 = new Image(); Highlight4.src = "./images/ampel_green.gif";
Highlight5 = new Image(); Highlight5.src = "./images/ampel_cyan.gif";
Highlight6 = new Image(); Highlight6.src = "./images/ampel_blau.gif";
Highlight7 = new Image(); Highlight7.src = "./images/ampel_black.gif";
Highlight8 = new Image(); Highlight8.src="./images/navigation03_rot.gif"
Highlight9 = new Image(); Highlight9.src="./images/navigation05_orange.gif"
Highlight10 = new Image(); Highlight10.src="./images/navigation08_gelb.gif"
Highlight11 = new Image(); Highlight11.src="./images/navigation09_green.gif"
Highlight12 = new Image(); Highlight12.src="./images/navigation10_cyan.gif"
Highlight13 = new Image(); Highlight13.src="./images/navigation11_blau.gif"
Highlight14 = new Image(); Highlight14.src="./images/navigation06_schwarz.gif"
}
}
function aktiv(wo, mitWas){
if(document.images){
document [wo].src= "./images/" + mitWas + ".gif";
}
}
// -->
</script>
So sieht das von mir verwendete Standard-Script aus. Der Aufruf im BODY geht wie folgt:
<body bgcolor="#006699" onload="preLoad()">
Weiter mit dem MouseOver:
<td colspan="6" height="43"><img src="./images/navigation01.gif" width="160" height="43" border="0" usemap="#rot"><map name="rot"><area href="javascript:alert('folgt später')" onMouseOver="aktiv('rot','navigation03_rot')" onMouseOut="aktiv('rot','navigation03_rotabdeck')" coords="36,26,11" shape="circle"></map></td>
Wie stelle ich es nun an, an einer anderen Stelle im Dokument Bilder zu wechseln die nicht die gleiche Grösse haben (eigentlich sind es sogar 3 Stellen an denen Grafiken getauscht werden sollen...)
Herzlichen Dank für Eure Mithilfe
smash