Skip to content

Instantly share code, notes, and snippets.

@kingbotss
Created May 30, 2023 08:42
Show Gist options
  • Select an option

  • Save kingbotss/bd686044e3cd314e194f5c7bb0f51714 to your computer and use it in GitHub Desktop.

Select an option

Save kingbotss/bd686044e3cd314e194f5c7bb0f51714 to your computer and use it in GitHub Desktop.
scroll page using javascript
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