mirror of
https://github.com/kou029w/unko.pages.dev.git
synced 2025-01-18 16:07:59 +00:00
a
This commit is contained in:
parent
afa4ecece5
commit
63370172e5
1 changed files with 22 additions and 0 deletions
22
index.html
22
index.html
|
@ -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>
|
||||||
( ・∀・)っ-=≡● ヽ(・∀・ )ノウンコー
|
( ・∀・)っ-=≡● ヽ(・∀・ )ノウンコー
|
||||||
|
|
Loading…
Add table
Reference in a new issue