Advertisement
Guest User

Untitled

a guest
Mar 13th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.31 KB | None | 0 0
  1.  //===========animation section  for the project  
  2.   $('.p-btn-prev').click(function(){
  3.     $(this).animate({right:'71px'},250);
  4.     $(this).animate({right:'100px'},250);
  5.   });
  6.  
  7.   $('.p-btn-next').click(function(){
  8.     $(this).animate({left:'-28px'},250);
  9.     $(this).animate({left:'0'},250);
  10.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement