Ver Mensaje Individual
  #11 (permalink)  
Antiguo 02/12/2009, 02:17
gazaposa
 
Fecha de Ingreso: noviembre-2009
Mensajes: 209
Antigüedad: 14 años, 5 meses
Puntos: 0
Respuesta: poner imagen con a:hover

ahora he puesto esto:

<html>
<head>
<title>XLWebmasters.com</title>
<SCRIPT LANGUAGE="JavaScript">
<!--

IMG01 = "flecha_anterior.gif"
IMG02 = "flecha_anterior.gif"

function imgover(imgname){
imgname.src = IMG01
}

function imgout(imgname){
imgname.src = IMG02
}

//-->
</SCRIPT>
</head>

<body>
<IMG SRC="flecha_anterior.gif" NAME="IMG01" width="29" height="27" BORDER="0">
<A HREF="http://www.miweb.com/" onMouseOver="imgover(IMG01)" onMouseOut="imgout(IMG01)">MiWeb</A>
<br>
<IMG SRC="flecha_anterior.gif" NAME="IMG02" width="27" height="23" BORDER="0">
<A HREF="http://www.miweb.com/seccion/" onMouseOver="imgover(IMG02)" onMouseOut="imgout(IMG02)">Seccion</A>
</body>
</html>