eyeblech / aut0scroll

simple jS code to enjoy automatic scrolling

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aut0scroll.js

(function autoScroll() {
    let scrollAmount = 1; // Number of pixels to scroll by each step
    let scrollDelay = 15; // Delay in milliseconds (15ms)

    setInterval(() => {
        window.scrollBy(0, scrollAmount);
    }, scrollDelay);
})();

HowTO

  • open up DevTools -> Console
  • paste the code
aut0scroll.mov

About

simple jS code to enjoy automatic scrolling


Languages

Language:JavaScript 100.0%