Foros del Web » Programando para Internet » Javascript »

Ventana emergente en la misma pagina

Estas en el tema de Ventana emergente en la misma pagina en el foro de Javascript en Foros del Web. Hola he visto que en algunas paginas cuando hago click en un boton me sale una pagina que se situa dentro de la misma pagina, ...
  #1 (permalink)  
Antiguo 09/10/2007, 18:49
Avatar de razcoll  
Fecha de Ingreso: abril-2005
Mensajes: 76
Antigüedad: 19 años
Puntos: 1
Exclamación Ventana emergente en la misma pagina

Hola he visto que en algunas paginas cuando hago click en un boton me sale una pagina que se situa dentro de la misma pagina, como una ventana emergente... alguien tiene idea de como se hace esto??...

Ojo no es como un popub que se abre en otra pagina, digamos que es una pequeña pagina dentro de otra que se abre...

Gracias por la repuesta..

Salu2.
  #2 (permalink)  
Antiguo 10/10/2007, 02:24
Avatar de KarlanKas
Moderador extraterrestre
 
Fecha de Ingreso: diciembre-2001
Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 4 meses
Puntos: 61
Re: Ventana emergente en la misma pagina

Eso se hace con capas ocultas que aparecen en un momento dado.

Por ejemplo (muy cutre):

Código:
<html>
<head>
	<title>Untitled</title>
	<style>

	#espere{
	
	font:normal 15px/15px verdana;
	position:absolute;
	left:100px;
	top:100px;
	width:300px;
	height:200px;
	border:solid 1px black;
	background:#ffffcc;
	z-index:99;
	visibility:hidden;
	color:black;
	}
	</style>
</head>

<body>
<input type="button" onclick="document.getElementById('espere').style.visibility='visible'" value="mostrar">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<div id="espere"><div style="position:absolute;top:0px;left:0px;height:20px;width:100%;background:blue;color:white">Windows Explorer</div><br>
<br>

PEPEPEPEPE
</div>


</body>
</html>
Un saludo!
__________________
Cómo escribir

No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia.
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 03:19.