Guest User

Untitled

a guest
May 11th, 2012
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.50 KB | None | 0 0
  1. <html>
  2. <head>
  3. <script type="text/javascript" src="resources/js/jquery-1.7.min.js"></script>
  4. <title>Criar uma DIV igual a uma janela Popup</title>
  5. <style>
  6. #pop {
  7.     display: none;
  8.     position: absolute;
  9.     top: 50%;
  10.     left: 50%;
  11.     margin-left: -150px;
  12.     margin-top: -100px;
  13.     padding: 10px;
  14.     width: 300px;
  15.     height: 200px;
  16.     border: 1px solid #d0d0d0
  17. }
  18. </style>
  19. </head>
  20. <body>
  21.     <div id="pop">
  22.         Minha Janela
  23.     </div>
  24.     <a href="#" onclick="$('#pop').fadeIn(300).delay(800).fadeOut(400);">Mostra</a>
  25. </body>
Advertisement
Add Comment
Please, Sign In to add comment