Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/01/2013, 11:21
Avatar de informacionsys
informacionsys
 
Fecha de Ingreso: mayo-2011
Ubicación: Bogota D.C
Mensajes: 793
Antigüedad: 13 años, 5 meses
Puntos: 76
Respuesta: Como sacar un pop-up de un form

Código HTML:
Ver original
  1. <!DOCTYPE html>
  2. <title>Practica AJAX</title>
  3. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  4. <style type="text/css">
  5. *{padding:0;margin:0}
  6. .miclase {
  7. background:url("../images/trans.png");
  8. height:3000px;
  9. position:fixed;
  10. width:100%;
  11. z-index:20;
  12. display:none;
  13. }
  14.  
  15. #mostrar, #cerrar{
  16.     background:#f60;
  17.     border-radius:10px 10px 10px 10px;
  18.     width:100px;
  19.     text-align:center;
  20.     color:#fff;
  21.     font-weight:bold;
  22.     font-family:Calibri;
  23.     cursor:pointer;        
  24. }
  25.  
  26. <script language="javascript">
  27. $(document).ready(function(){
  28.     $("#mostrar").click(function(){$("#popup").fadeIn("slow")})
  29.     $("#cerrar").click(function(){$("#popup").fadeOut();})
  30. })
  31. </head>
  32.     <div id="popup" class="miclase">
  33.         <div style="width:500px;margin:10% auto;background-color:#f60;">           
  34.             <div style="">Sistema</div>
  35.             <div style="background-color:#333;width:120px;" id="cerrar">Cerrar</div>
  36.         </div>
  37.     </div>
  38.     <div id="mostrar">Ver Popup</div>
  39. </body>
  40. </html>

Última edición por informacionsys; 04/01/2013 a las 11:27