Ver Mensaje Individual
  #4 (permalink)  
Antiguo 08/07/2002, 05:57
salmos
 
Fecha de Ingreso: febrero-2002
Mensajes: 80
Antigüedad: 23 años
Puntos: 0
Re: Abrir Ventanas

Prueba este código, y con algunos cambios puede que des con lo que buscas. De todas formas el efecto es muy guapo. :P

<html>
<head>
<title>Untitled Document</title>
<script language="Javascript">
function expandir() {
for(x = 0; x < 50; x++) {
window.moveTo(screen.availWidth * -(x - 50) / 100, screen.availHeight * -(x - 50) / 100);
window.resizeTo(screen.availWidth * x / 50, screen.availHeight * x / 50);
}
window.moveTo(0,0);
window.resizeTo(screen.availWidth, screen.availHeight);
}
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<a href="http://www.terra.es" onClick="expandir();">Abre ventana</a>
</body>
</html>
:-p