Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <div id="msg" class="dialog">loading, please wait...</div>
  2.  
  3. <body id="pageContainer">
  4. <div id="msg" class="dialog">loading, please wait...</div>
  5. <div id="pageBody">
  6. <form id="formMaster" runat="server">
  7. </form>
  8. </div>
  9. </body>
  10.  
  11. .dialog {
  12. display: none;
  13. width: 300px;
  14. height: 300px;
  15. position: absolute;
  16. left: 50%;
  17. top: 50%;
  18. margin-left: -150px;
  19. margin-top: -150px;
  20. }
  21.  
  22. // Simulate some time before everything's loaded
  23. setTimeout(function () {
  24. $("#msg").fadeOut(function () {
  25. // Wait for #msg to fade out before fading in #pageBody
  26. $("#pageBody").animate({
  27. opacity: "1.0"
  28. }, 1);
  29. });
  30. }, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement