Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/02/2012, 18:29
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: Pop up interna con overlay

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <style type="text/css">
  8. /*<![CDATA[*/
  9.  
  10. div#ns {
  11. position: fixed;
  12. width: 100%;
  13. height:100%;
  14. background-color: #000;
  15. color: #FFF;
  16. top:0px;
  17. left:0px;
  18. z-index: 999;
  19. overflow:hidden;
  20. opacity: 0.9;
  21. display: none;
  22. }
  23.  
  24. div.interior{
  25. position:absolute;
  26. top: 50%;
  27. left: 50%;
  28. width:350px;
  29. height:300px;
  30. margin-top: -150px; /*valor negativo mitad del alto*/
  31. margin-left: -175px; /*valor negativo mitad del ancho*/
  32. border: 2px solid #2982C6;
  33. background-color: red;
  34. text-align: center;
  35. z-index: 999;
  36. }
  37.  
  38. /*]]>*/
  39.  
  40. </head>
  41. <div id="ns">
  42. <div class="interior">
  43. aqui el iframe
  44. </div>
  45. </div>
  46.  
  47. <h1>Título</h1>
  48. <span onclick="document.getElementById('ns').style.display='block';" style="cursor: pointer;">popup</span>
  49. </body>
  50. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.