Advertisement
DeaD_EyE

scrollpage

Aug 27th, 2021
910
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function scrollpage() {
  2.  
  3.     let i = 0;
  4.     let height = document.documentElement.scrollHeight;
  5.     let direction = 0.1
  6.    
  7.     function invert() {
  8.         direction *= -1
  9.     }
  10.    
  11.     function scroll() {
  12.         i += direction;
  13.         window.scrollTo(0, i);
  14.  
  15.         if (i >= height) {
  16.             invert();
  17.             // wenn er wieder nach oben
  18.             // gescrollt werden soll
  19.             // return auskommentieren
  20.             return;
  21.         } else if (i <= 0) {
  22.             invert();
  23.         }
  24.        
  25.         setTimeout(scroll, 0.001);
  26.     }
  27.    
  28.     scroll();
  29. }
  30.  
  31. scrollpage();
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement