Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/03/2012, 15:12
inicio_rave_
 
Fecha de Ingreso: marzo-2012
Mensajes: 7
Antigüedad: 12 años, 10 meses
Puntos: 0
quiero vizualizar las fotos parecidas al del MERCADOLIBRE

me han dejado qe haga un codigo en HTML para poder ver las fotos parecida al del MERCADOLIBRE.

ACA ESTA UN POCO AVANZADO PRO AUN ME FALTA ALGUNOS DETALLES.


CODIGO FUENTE:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
<script language="javascript">
function muestraimagen(x){
if(x==1){
document.getElementById("imagen").src="imagenes/imagen1.jpg";
}
if(x==2){
document.getElementById("imagen").src="imagenes/imagen2.jpg";
}
if(x==3){
document.getElementById("imagen").src="imagenes/imagen3.jpg";
}
}
</script>
</head>
<body>
<table>
<tr>
<td>
<input type="button" value="imagen1"
onmousemove="muestraimagen(1)">
</td>
<td>
<input type="button" value="imagen2"
onmousemove="muestraimagen(2)">
</td>
<td>
<input type="button" value="imagen3"
onmousemove="muestraimagen(3)">
</td>
</tr>
<tr>
<td colspan="3">
<img src="imagenes/imagen1.jpg" id="imagen"
width="200px" height="200px">
</td>
</tr>
</table>
</body>
</html>