Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $('.box').each(function(){
  2. $(this)
  3. .css('left', $(this).width()*-1 )
  4. .animate({'left':0},1000)
  5. ;
  6. });
  7.  
  8. $('.box').css('left', $(this).width()*-1 ).animate({'left':0},1000);
  9.  
  10. var $box = $box.css('left', $box.width()*-1 ).animate({'left':0},1000);
  11.  
  12. $('.box').each(animateBox);
Add Comment
Please, Sign In to add comment