Skip to content

Instantly share code, notes, and snippets.

@akinov
Last active December 22, 2019 15:42
Show Gist options
  • Save akinov/82a9fbad56957337eeb740e050c34d31 to your computer and use it in GitHub Desktop.
Save akinov/82a9fbad56957337eeb740e050c34d31 to your computer and use it in GitHub Desktop.
大量にゴリラを生成できるスクリプト
for (let i = 0; i < 300; i++) {
const d = document.createElement('span');
d.innerHTML = '&#x1f98d;';
d.style.fontSize = '50px';
d.style.position = 'absolute';
d.style.zoom = Math.random();
d.style.top = Math.random() * 100 + '%';
d.style.left = Math.random() * 100 + '%';
document.body.appendChild(d);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment