Tema: Imagen
Ver Mensaje Individual
  #13 (permalink)  
Antiguo 16/07/2002, 15:06
Avatar de KarlanKas
KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años
Puntos: 61
Re: Imagen

Claro que sí!

Código:
<html>
<head>
<title>Hola</title>

<script>
texto=new Array;
texto[0]="Bienvenido chavalín";
texto[1]="hola hola hola";
texto[2]="<b>Adios adios</b><br><br>fff";
texto[3]="ffrfrffrfrf<input type=button value=pincha>";
function texto2(opcion){
letra=texto[opcion]
document.getElementById('texxxto').innerHTML=letra
}

</script>
</head>
<body>
<img src="e.jpg" onmouseout="texto2('0');" onmouseover="texto2('1');">
<img src="q.jpg" onmouseout="texto2('0');" onmouseover="texto2('2');">
<img src="df" onmouseout="texto2('0');" onmouseover="texto2('3');">

<div id="texxxto">Bienvenido Chavalín</div>
</body>
</html>
Espero que te sirva!!