Created
May 30, 2023 08:42
-
-
Save kingbotss/bd686044e3cd314e194f5c7bb0f51714 to your computer and use it in GitHub Desktop.
scroll page using javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let m=100,x=0; | |
| const sinterval = setInterval(() => { | |
| window.scrollBy(x,m); | |
| m+=m;x+=m; //increase window size after scroll | |
| }, 100); | |
| //clears Interval | |
| setTimeout(()=> clearInterval(sinterval),2000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment