jQuery animate method


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. $('.target').click(function(){
  2. $('#bob').animate({
  3. left: '-=85px',
  4. },'fast','swing');
  5. });

Report this snippet


Comments


You need to login to view comments.