Ciao a voi 'super esperti'!
allora...ho questo script che visualizza in modo 'random' le immagini con link:
<script language="JavaScript">
<!--
// Create arrays to contain all the values
// for links and image locations
link = new Array
image = new Array
link[1]="http://www.AAAA.org/modules.php?name=Video_Stream"
image[1]="http://www.AAAA.org/Video/Tumb/pippo.gif"
link[2]="http://www.AAAA.org/modules.php?name=Video_Stream"
image[2]="http://www.AAAA.org/Video/Tumb/pluto.gif"
// Create a random number between 1 and five
random_num = (Math.round((Math.random()*4)+1))
// Write a link and images with random array
document.write("<a href=\"" + link[random_num] + "\">");
document.write("<img src=\"" + image[random_num] + "\" border=\"0\"></a>");
-->
</script>
vorrei aggiungerci come tooltip: l' effetto 'onmouseover' :
INGRANDIMENTO DELL'IMMAGINE
il mouse si sposta fuori dall'immagine
L'IMMAGINE RITORNA ALLE DIMENSIONI ORIGINALI.
come fare?
potete aiutarmi?
grazie

Rispondi quotando