Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var howmuch = 200;
  2. var duration = 2000;
  3. function move() {
  4. $("#obj").animate({'marginLeft' : '+=' + howmuch + 'px' }, duration);
  5. }
  6. move();
  7.  
  8. $("#obj").animate({'marginLeft' : '+=' + howmuch + 'px' } );
  9.  
  10. $("#obj").animate({'marginLeft' : '+=' + 5 + 'px' } );
  11.  
  12. $("#obj").animate({'marginLeft' : '+=' + 5 + 'px' } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement