Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. $("html, body").animate({ scrollTop: $(document).height() }, 4000);
  2. setTimeout(function() {
  3. $('html, body').animate({scrollTop:0}, 4000);
  4. },4000);
  5. setInterval(function(){
  6. // 4000 - it will take 4 secound in total from the top of the page to the bottom
  7. $("html, body").animate({ scrollTop: $(document).height() }, 4000);
  8. setTimeout(function() {
  9. $('html, body').animate({scrollTop:0}, 4000);
  10. },4000);
  11.  
  12. },8000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement