Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/03/2002, 11:14
Avatar de jmatzker
jmatzker
 
Fecha de Ingreso: febrero-2002
Mensajes: 38
Antigüedad: 22 años, 3 meses
Puntos: 0
Re: ventana que se agranda..?

hola:
eso lo hacen con javascript, te mostrare un ejemplo inverso:
-------------------------------------------
Inserta el siguiente código fuente en el <HEAD> de tu página
<script language="JavaScript">
<!--
function changeWin() {
for(var h=window.screen.width; h>=100; h-=10)
window.resizeBy(-10,-6);
for(var h=100; h<=window.screen.width; h+=10)
window.resizeBy(10,6);
}
//-->
</script>
luego, inserta en el <BODY> el siguiente formulario (si quieres activarlo con un botón):
form>
<input type="button" value="Pulsa aquí" onClick="return changeWin();" name="button">
</form>
--------------------------------------------

salu2....