Ver Mensaje Individual
  #8 (permalink)  
Antiguo 26/03/2009, 16:20
Avatar de buzu
buzu
 
Fecha de Ingreso: octubre-2006
Ubicación: San Francisco, CA
Mensajes: 2.168
Antigüedad: 18 años, 3 meses
Puntos: 122
Respuesta: Cómo suspendo una pagina web??

Creo que apartir de este ejemplo rustico que hice puedes lograr lo que quieres...

Código javascript:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
  4. <head>
  5.     <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.     <title>Untitled</title>
  7.     <script type="text/javascript">
  8.         function imprimir(){
  9.             window.open('imprimir.html','_blank','width = 200px; height = 500px;')
  10.             obscurecer();
  11.         }
  12.         function obscurecer(){
  13.             pantalla = document.createElement('div');
  14.             pantalla.id = 'pantalla';
  15.             document.getElementsByTagName('body')[0].appendChild(pantalla);
  16.         }  
  17.         if(window.opener){
  18.             window.onunload = function(){
  19.                 window.opener.quitarPantalla();
  20.             }  
  21.         }
  22.         function quitarPantalla(){
  23.             document.getElementsByTagName('body')[0].removeChild(document.getElementById('pantalla'));
  24.         }
  25.     </script>
  26.     <style type="text/css">
  27.         #pantalla{
  28.             width: 100%;
  29.             height: 100%;
  30.             position: absolute;
  31.             left: 0px;
  32.             top: 0;
  33.             background-color: #000;
  34.         }
  35.     </style>
  36. </head>
  37. <body>
  38.     <p>
  39.         <a href="#" onclick="imprimir()">Imprimir</a><br />
  40.         texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....texto plano.....
  41.     </p>
  42. </body>
  43. </html>
__________________
twitter: @imbuzu