Skip to content

Instantly share code, notes, and snippets.

@sfrdmn
Last active October 12, 2015 06:37
Show Gist options
  • Save sfrdmn/3985749 to your computer and use it in GitHub Desktop.
Save sfrdmn/3985749 to your computer and use it in GitHub Desktop.
cool dude
a = document.createElement('div');
b = ['◡ ◡','⊙ ⊙'];
h = window.innerHeight;
w = window.innerHeight;
s = h*.8;
i = 0;
a.style.fontSize = s+'px';
a.style.position = 'fixed';
a.style.left = '0';
a.style.right = '0';
a.style.top = '0';
a.style.bottom = '0';
a.style.textAlign = 'center';
a.style.zIndex = 9999;
document.body.appendChild(a);
function u() {
i = (i+1)%2;
a.innerHTML = b[i];
setTimeout(u, i?2000:150);
}
u();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment