Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. alert("starting");
  2. $.scrollTo({ top: '+=100px', left: '+=0px' }, 800);
  3. alert("finished");
  4.  
  5. $("#id").scrollTop($("#id").scrollTop() + 100);
  6.  
  7. $('html, body').animate({scrollTop: $("#page").offset().top}, 2000);
  8.  
  9. $("#id").animate({"scrollTop": $("#id").scrollTop() + 100});
  10.  
  11. $.scrollTo('+=100px', 800, { axis:'y' });
Add Comment
Please, Sign In to add comment