Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created September 19, 2022 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netsi1964/274aa27e4a53b6f19493a8a17977e4eb to your computer and use it in GitHub Desktop.
Save netsi1964/274aa27e4a53b6f19493a8a17977e4eb to your computer and use it in GitHub Desktop.
Pretend that scrolling around a page happens :-)
let all = Array.from(document.querySelectorAll('*'));
setInterval(() => {
all[Math.floor(Math.random()*all.length)].scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"})
}, 800)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment