unko.pages.dev/index.html
2021-04-14 12:35:31 +09:00

33 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>unko.pages.dev</title>
<script>
const g = (function* () {
const messages = [
"( ・∀・)っ-=≡●   ヽ(・∀・ )ノウンコー",
"( ・∀・)っ -=≡●  ヽ(・∀・ )ノウンコー",
"( ・∀・)っ  -=≡● ヽ(・∀・ )ノウンコー",
"( ・∀・)っ   -=≡●ヽ(・∀・ )ノウンコー",
"( ・∀・)ノ   ●≡=-⊂(・∀・ )ノウンコー",
"( ・∀・)ノ  ●≡=- ⊂(・∀・ )ノウンコー",
"( ・∀・)ノ ●≡=-  ⊂(・∀・ )ノウンコー",
"( ・∀・)ノ●≡=-   ⊂(・∀・ )ノウンコー",
];
while (true) for (const message of messages) yield message;
})();
function loop() {
const { value } = g.next();
document.title = value;
document.body.textContent = value;
setTimeout(loop, 200);
}
window.addEventListener("DOMContentLoaded", loop);
</script>
</head>
<body>
( ・∀・)っ-=≡●   ヽ(・∀・ )ノウンコー
</body>
</html>