Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(window).load(function() {
  2.     $(".screenLoading").fadeOut('slow');
  3. })
  4.  
  5. setInterval("loadCont()", 500);
  6. //Loaded
  7.  
  8.  
  9.  
  10. function loadCont(){
  11.  
  12.     $('.container').fadeIn('slow');
  13.     return;
  14. }
  15.  
  16. function loadLogin() {
  17.     $('.container').fadeOut('slow', function() {
  18.         $('.log').fadeIn('slow');
  19.     });
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement