Advertisement
Guest User

Untitled

a guest
Feb 14th, 2018
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function r() {
  2.   setTimeout(r, Math.random() * 10);
  3.   let el = document.createElement(`div`);
  4.   el.innerHTML = `🐎`;
  5.   el.style.position = `absolute`;
  6.   el.style.zIndex = 999999;
  7.   el.style.fontSize = (((Math.random() * 48) | 0) + 16) + `px`;
  8.   el.style.left = ((Math.random() * innerWidth) | 0) + `px`;
  9.   el.style.top = ((Math.random() * (innerHeight + pageYOffset)) | 0) + `px`;
  10.   document.body.appendChild(el);
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement