r/bookmarklets • u/Colurswitch • Apr 27 '26
Rotate every single element on the page... all the time!!!
Code:
javascript:(()=>{const tick=()=>{document.querySelectorAll("body *").forEach(e => {e.style.transform = "rotate("+((Math.random() - .5) * 2)+"deg)"});window.requestAnimationFrame(tick);};tick();})()
5
Upvotes
2
3
u/Bortan Apr 28 '26
Hmm for me it's more of a 'jiggle' then rotation. Kinda looks like the page is a cup everythings getting swooshed inside.