Created
September 19, 2022 12:15
-
-
Save netsi1964/274aa27e4a53b6f19493a8a17977e4eb to your computer and use it in GitHub Desktop.
Pretend that scrolling around a page happens :-)
This file contains 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 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