Ver Mensaje Individual
  #5 (permalink)  
Antiguo 12/05/2002, 16:12
dxx
 
Fecha de Ingreso: mayo-2002
Mensajes: 162
Antigüedad: 21 años, 11 meses
Puntos: 0
Re: Pop-up atractivos

MIRA A VER ESTE::

<!-- Copiar dentro del tag BODY -->

<script language="JavaScript">


var ancho=100
var alto=100
var fin=300
var x=100
var y=100

function inicio()
{
ventana = window.open("hola.htm", "_blank", "resizable,height=1,width=1,top=x,left=y,scre enX=x,screenY=y");
abre();
}
function abre()
{
if (ancho<=fin) {
ventana.moveTo(x,y);
ventana.resizeTo(ancho,alto);
x+=5
y+=5
ancho+=15
alto+=15
timer= setTimeout("abre()",1)
}
else {
clearTimeout(timer)
}
}
// -->
</script>

<form>
<input type="button" value="Abrir Ventana" onClick="inicio()"></p>
</form>