05/01/2002, 07:03
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes Puntos: 61 | |
Re: ventanas con capas???? pop up??? Hola Ximex!
No sé si te he entendido bien. Lo que quieres es que al hacer click sobre un texto aparezca una ventana con un texto, no?
Si es así lo podrías hacer así:
--------------
<html>
<head>
<title>prueba</title>
</head>
<script language="JavaScript">
function ventanita(){
ventana=window.open('ventanita.html', '', 'width=300,height=50,');
ventana.resizeTo(250,30);
ventana.focus();}
</script>
<body>
<a href="#" onclick="ventanita()">abrir ventanita</a>
</body>
</html>
-------------------
Y sólo te queda el crear un documento html con el nombre de ventanita.html donde pondrás el texto y el título que quieras. Por ejemplo:
------------
<html>
<head>
<title>Ventana de saludo</title>
</head>
<style>
body{font:bold 12px/14px Verdana;text-align:center;}
</style
<body>
Hola Soy KarlanKas!
</body>
</html>
--------------
Espero que te sirva!!
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="190" height="51"><param name="bgcolor" value="#0066CC"><param name="movie" value="http://www.webareyou.com/Movie1.swf"><embed src="http://www.webareyou.com/Movie1.swf"></embebed></object> |