Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //scroll to bottom
  2. setInterval(function(){
  3.  
  4.     //scroll down
  5.     $("html, body").animate({ scrollTop: 50 }, 5000);
  6.  
  7.     //scroll to top
  8.     setTimeout(function() {
  9.        $('html, body').animate({scrollTop:0}, 8000);
  10.     },2000);//call every 2000 miliseconds
  11.  
  12. },1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement