Nieuw lid |
|
Hallo,
Ik heb een scriptje waarbij als ik over een hover link ga, een plaatje in een box veranderd.
Nu wil ik een fade effect aanbrengen, dus dat als ik op link B sta dat het plaatje van A naar B fade.
Hoe doe ik dat?
Dit is het script dat ik momenteel heb:
<script language="JavaScript" type="text/JavaScript">
function showT(q){
document.getElementById('ima').setAttribute('src','0'+q+'.jpg')
}
</script>
<table width="500" border="0">
<tr>
<td width="20%"><a href="#" onmouseover="showT(0)">pic 1<br>
<br>
</a><a href="#" onmouseover="showT(1)">pic 2<br>
<br>
</a><a href="#" onmouseover="showT(2)">pic 3</a></td>
<td><img id="ima" src="00.jpg" width="100" height="100"></td>
</tr>
</table>
<script language="JavaScript" type="text/JavaScript"> function showT(q){ document.getElementById('ima').setAttribute('src','0'+q+'.jpg') } </script> <table width="500" border="0"> <tr> <td width="20%"><a href="#" onmouseover="showT(0)">pic 1<br> <br> </a><a href="#" onmouseover="showT(1)">pic 2<br> <br> </a><a href="#" onmouseover="showT(2)">pic 3</a></td> <td><img id="ima" src="00.jpg" width="100" height="100"></td> </tr> </table>
|