Skip to content

Instantly share code, notes, and snippets.

@Peranikov
Created August 16, 2017 03:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Peranikov/8042f2565d07610f8d7cd0cfc540df02 to your computer and use it in GitHub Desktop.
Save Peranikov/8042f2565d07610f8d7cd0cfc540df02 to your computer and use it in GitHub Desktop.
清く正しいJS
setInterval(function() {
img = document.createElement("img");
img.src = "https://qiita-cloud.s3-ap-northeast-1.amazonaws.com/emoji/innocent.png";
document.body.appendChild(img);
document.body.insertBefore(img, document.body.firstChild);
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment