Skip to content

Instantly share code, notes, and snippets.

@andrejewski
Created October 8, 2017 02:26
Show Gist options
  • Select an option

  • Save andrejewski/da57a608cdb6001d30f307ec8fc2e5b8 to your computer and use it in GitHub Desktop.

Select an option

Save andrejewski/da57a608cdb6001d30f307ec8fc2e5b8 to your computer and use it in GitHub Desktop.
Add an annoying particle on the screen of a webpage
document.body.appendChild((function () {
var e = document.createElement('div');
e.style = 'background-color: #000; position: fixed; right: 30vw; top: 40vh; width: 2px; height: 4px';
return e;
})())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment