mirror of
https://github.com/kou029w/unko.pages.dev.git
synced 2025-01-18 16:07:59 +00:00
33 lines
1.2 KiB
HTML
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>
|