Skip to content

Instantly share code, notes, and snippets.

@themisir
Created June 26, 2020 21:43
Show Gist options
  • Save themisir/1355f4da29030c759509b423d540a1de to your computer and use it in GitHub Desktop.
Save themisir/1355f4da29030c759509b423d540a1de to your computer and use it in GitHub Desktop.
Make things go crazy
let crazies = document.querySelectorAll('*')
setInterval(() => crazies = document.querySelectorAll('*'), 3000);
setInterval(() => crazies.forEach(e => {
let x = () => 200 * Math.random() - 100;
e.style.marginTop = x();
e.style.marginLeft = x();
e.style.paddingTop = x();
e.style.paddingBottom = x();
e.style.paddingLeft = x();
e.style.paddingRight = x();
e.style.left = x();
e.style.top = x();
e.style.right = x();
e.style.bottom = x();
e.style.transition = 'all 1s linear';
}) , 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment