Advertisement
Guest User

Untitled

a guest
May 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $(document).ready(function(){
  2. myfunction();
  3. });
  4.  
  5. num = 0;
  6. function myfunction(){
  7. if(num == 1500)
  8. {
  9. num = 0;
  10. }
  11.  
  12. setTimeout(function(){$('html, body').animate({scrollTop:num}, "normal")},3000);
  13. num = num + 500;
  14. myfunction();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement