A ver si me puedes ayudar en esto
He hecho una función que lo que hace es que al pinchar en una imagen esta se hace más grande, pero me la muestra en otra ventana de windows, y yo lo que quiero es que me la muestre en una ventana pero que no haya ninguna barra, tan solo un marco finito y una POR para cerrar. ¿Esto cómo lo podría hacer?
Muchas gracias por anticipado.
este es el codigo;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../../../estilos/letra.css" rel="stylesheet" type="text/css">
<link href="../../../estilos/titulos.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
function abrir(nombre,ancho,alto)
{
var nombreimagen=nombre;
var ventana=window.open("","imagen","width="+ancho+",height="+alto+",status");
ventana.document.write("<HTML><BODY>");
ventana.document.write("<img src="+nombreimagen+" border='0'>");
ventana.document.write("</BODY></HTML>");
}
</script>
<link href="../../../estilos/titulos2.css" rel="stylesheet" type="text/css">
<link href="../../../estilos/letra2.css" rel="stylesheet" type="text/css">
</head>
<body background="../../../imagenes/FondoderechaYac.png">
<img src="../../../imagenes/FotosWEBRuta/oru%F1a.jpg" width="166" height="133" border="1" align="middle" onClick="abrir('../../../imagenes/FotosWEBRuta/oru%F1a.jpg',530,400)">
<img src="../../../imagenes/FotosWEBRuta/oru%F1a.png" width="166" height="133" onClick="abrir('../../../imagenes/FotosWEBRuta/oru%F1a.png',530,400)">
</body>
</html>
Muchas gracias por anticipado.
este es el codigo;
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../../../estilos/letra.css" rel="stylesheet" type="text/css">
<link href="../../../estilos/titulos.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
function abrir(nombre,ancho,alto)
{
var nombreimagen=nombre;
var ventana=window.open("","imagen","width="+ancho+",height="+alto+",status");
ventana.document.write("<HTML><BODY>");
ventana.document.write("<img src="+nombreimagen+" border='0'>");
ventana.document.write("</BODY></HTML>");
}
</script>
<link href="../../../estilos/titulos2.css" rel="stylesheet" type="text/css">
<link href="../../../estilos/letra2.css" rel="stylesheet" type="text/css">
</head>
<body background="../../../imagenes/FondoderechaYac.png">
<img src="../../../imagenes/FotosWEBRuta/oru%F1a.jpg" width="166" height="133" border="1" align="middle" onClick="abrir('../../../imagenes/FotosWEBRuta/oru%F1a.jpg',530,400)">
<img src="../../../imagenes/FotosWEBRuta/oru%F1a.png" width="166" height="133" onClick="abrir('../../../imagenes/FotosWEBRuta/oru%F1a.png',530,400)">
</body>
</html>
1 Respuesta
Respuesta
1