Como presentar imágenes pequeñas en un tamaño mas grande
Publicado por Luis (3 intervenciones) el 25/05/2002 23:09:49
Tengo imagenes pequeñas en un pagina web y quiero presentarlas en un tamaño mas grande,como podria hacerlo.
Valora esta pregunta


0
//OnClick de la imagen
<img src="img/<%=imagen%>" width="150" height="100" onClick="Javascript:abrir ('pagina.jsp?foto=<%=imagen%>','Imagen','scrollbars=no,width=500,heght=333')">
//Codigo del popup
<html>
<head>
<title>Imagen</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" scroll="no">
<img src="img/<%=request.getParameter("foto")%>" width="500" height="333">
</body>
</html>