<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Misskey.ioの絵文字をランダム表示するアプリ</title>
</head>
<body>
<h1>Misskey.ioの絵文字をランダム表示するアプリ</h1>
<div id="emoji"></div>
<script>
// Misskey.ioの絵文字リスト
const emojis = [
'😀','😁','😂','🤣','😃','😄','😅','😆','😉','😊',
'😋','😎','😍','😘','😗','😙','😚','🙂','🤗','🤔',
'🤐','😑','😶','🙄','😏','😣','😥','😮','😯','😪',
'😫','😴','😌','🤓','😛','😜','😝','🤤','😒','😓',
'😔','😕','🙃','🤑','😲','😷','🤕','🤒','🤢','🤮',
'😭','😰','😩','😡','😠','🤬','😤','🤯','😱','😳',
'😵','😡','👊','✊','🤛','🤜','👋','💪','🦶','👠'
];
let count = 0;
const emojiDiv = document.getElementById('emoji');
function displayEmoji() {
let index = Math.floor(Math.random() * emojis.length);
let emoji = emojis[index];
count++;
if (count % 100 === 0) {
emoji = '🌟 スーパー偉業 🌟';
} else if (count % 10 === 0) {
emoji = '🎉 偉業 🎉';
}
emojiDiv.textContent = emoji;
}
setInterval(displayEmoji, 1000);
</script>
</body>
</html>