This commit is contained in:
Nebel 2021-04-14 12:35:14 +09:00
parent afa4ecece5
commit 63370172e5

View file

@ -4,6 +4,28 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<title>unko.pages.dev</title> <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> </head>
<body> <body>
( ・∀・)っ-=≡●   ヽ(・∀・ )ノウンコー ( ・∀・)っ-=≡●   ヽ(・∀・ )ノウンコー