Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var leftCloud1 = -30;
  2.  
  3. $('#cloud1').css('left', leftCloud1);
  4.  
  5.  
  6. function animateCloud1() {
  7.  
  8. $('#cloud1').animate({left: '1100'},20000);
  9. leftCloud1 = -300;
  10. $('#cloud1').css('left', leftCloud1);
  11.  
  12. animateCloud1();
  13.  
  14. }
  15.  
  16. animateCloud1();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement