Guest User

Untitled

a guest
Oct 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var loginContainerDist = $('#login_container').css('height');
  2. $('#login').each(function() {
  3.     $(this).click(function() {
  4.  
  5.         if ($('#login_container').css('margin-top') == '0px')
  6.             $('#login_container').stop().animate({ 'margin-top': -loginContainerDist },700);
  7.         else
  8.             $('#login_container').stop().animate({ 'margin-top': '0px'},700);
  9.     });
  10. });
Add Comment
Please, Sign In to add comment