提示詞庫
- 提示庫
- 宇宙按鍵
- 企業洞察者
- 網站精靈
- Excel公式專家
- Google Apps 腳本編寫器
- Python 除錯工具
- 時間旅行顧問
- 說故事小幫手
- 引用你的來源
- SQL 魔法師
- 解夢者
- 雙關語大師
- 美食創作者
- 組合詞詩人
- 幽默助手Hal
- LaTeX 圖例
- 情緒色彩轉換器
- 精通 Git
- 比喻大師
- 倫理困境導航器
- 會議記錄員
- 成語解析器
- 程式碼顧問
- 函數生成器
- 新詞創造器
- CSV 轉換器
- 表情符號編碼器
- 文章修飾器
- 觀點權衡者
- 問答遊戲生成器
- 正念導師
- 二年級簡化器
- VR 健身創新者
- PII 淨化器
- 備忘錄大師
- 職業生涯教練
- 評分專家
- 繞口令
- 面試問題生成器
- 文法精靈
- 來猜個謎語吧
- 程式碼解釋器
- 外星人類學家
- 資料整理器
- 品牌建構器
- 效率估算器
- 評論分類器
- 方向解碼器
- 激勵繆思
- 電子郵件提取器
- 主要審核者
- 課程計劃制定工具
- 蘇格拉底式智者
- 頭韻詞煉金術師
- 未來主義時尚顧問
- 多語言超能力
- 產品命名專家
- 哲學思考
- 試算表魔術師
- 科幻場景模擬器
- 自適應編輯器
- 巴別塔的廣播
- 推文語氣偵測器
- 機場代碼分析器
提示詞庫
宇宙按鍵
在單一HTML檔案中生成一個互動式打字速度遊戲,具有側捲式遊戲玩法和Tailwind CSS樣式。
將此提示複製到我們的開發者控制台中,親自試試看!
內容 | |
---|---|
User | 請為我寫一個完整的網頁應用程式,使用單一HTML檔案。這個應用程式應該包含一個簡單的側捲式遊戲,我可以使用WASD來移動。當在世界中移動時,角色/精靈偶爾會遇到文字。當遇到文字時,玩家必須盡快正確地輸入該文字。文字輸入得越快,玩家獲得的分數就越多。我們應該在右上角有一個計數器來追蹤分數。文字應該是隨機且變化多樣的,以保持遊戲的趣味性。 你應該讓網站看起來很美觀並使用Tailwind。 |
範例輸出
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Side-Scrolling Typing Game</title>
</head>
<body class="bg-gray-900 text-white">
<div class="fixed top-4 right-4 text-2xl">
Score: <span id="score">0</span>
</div>
<div id="game" class="h-screen w-screen overflow-hidden relative">
<div
id="player"
class="absolute bottom-10 left-10 w-8 h-8 bg-blue-500"
></div>
</div>
<div
id="word-input"
class="fixed top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 bg-white text-black p-4 rounded hidden"
>
<input
type="text"
id="typed-word"
class="border border-gray-300 rounded px-2 py-1 mb-2 w-full"
/>
<button id="submit-word" class="bg-blue-500 text-white px-4 py-2 rounded">
Submit
</button>
</div>
<script>
const words = [
'ability',
'able',
'about',
'above',
'accept',
'according',
'account',
'across',
'action',
'activity',
'actually',
'address',
'administration',
'admit',
'adult',
'affect',
'after',
'again',
'against',
'agency',
'agent',
'ago',
'agree',
'agreement',
'ahead',
'air',
'all',
'allow',
'almost',
'alone',
'along',
'already',
'also',
'although',
'always',
'American',
'among',
'amount',
'analysis',
'and',
'animal',
'another',
'answer',
'any',
'anyone',
'anything',
'appear',
'apply',
'approach',
'area',
'argue',
'arm',
'around',
'arrive',
'art',
'article',
'artist',
'as',
'ask',
'assume',
'at',
'attack',
'attention',
'attorney',
'audience',
'author',
'authority',
'available',
'avoid',
'away',
'baby',
'back',
'bad',
'bag',
'ball',
'bank',
'bar',
'base',
'be',
'beat',
'beautiful',
'because',
'become',
'bed',
'before',
'begin',
'behavior',
'behind',
'believe',
'benefit',
'best',
'better',
'between',
'beyond',
'big',
'bill',
'billion',
'bit',
'black',
'blood',
'blue',
'board',
'body',
'book',
'born',
'both',
'box',
'boy',
'break',
'bring',
'brother',
'budget',
'build',
'building',
'business',
'but',
'buy',
'by',
'call',
'camera',
'campaign',
];
let score = 0;
let currentWord;
let startTime;
const game = document.getElementById('game');
const player = document.getElementById('player');
const wordInput = document.getElementById('word-input');
const typedWord = document.getElementById('typed-word');
const submitWord = document.getElementById('submit-word');
const scoreDisplay = document.getElementById('score');
let playerX = 10;
let playerY = game.offsetHeight - 50;
const speed = 5;
function placeWord() {
const word = document.createElement('div');
word.textContent = words[Math.floor(Math.random() * words.length)];
word.className = 'absolute text-2xl';
word.style.left = `${game.offsetWidth + 10}px`;
word.style.top = `${Math.random() * (game.offsetHeight - 50)}px`;
game.appendChild(word);
return word;
}
function checkCollision(word) {
const playerRect = player.getBoundingClientRect();
const wordRect = word.getBoundingClientRect();
return !(
playerRect.right < wordRect.left ||
playerRect.left > wordRect.right ||
playerRect.bottom < wordRect.top ||
playerRect.top > wordRect.bottom
);
}
function startInput(word) {
currentWord = word.textContent;
wordInput.style.display = 'block';
typedWord.value = '';
typedWord.focus();
startTime = Date.now();
}
function endInput() {
wordInput.style.display = 'none';
const endTime = Date.now();
const elapsedTime = endTime - startTime;
const timeBonus = Math.max(2000 - elapsedTime, 0);
score += Math.round(1000 + timeBonus);
scoreDisplay.textContent = score;
}
function checkInput() {
if (typedWord.value === currentWord) {
endInput();
}
}
function gameLoop() {
playerY = Math.max(
0,
Math.min(playerY, game.offsetHeight - player.offsetHeight)
);
playerX = Math.max(
0,
Math.min(playerX, game.offsetWidth - player.offsetWidth)
);
player.style.top = `${playerY}px`;
player.style.left = `${playerX}px`;
const words = Array.from(
document.querySelectorAll('#game > div:not(#player)')
);
words.forEach((word) => {
const currentLeft = parseInt(word.style.left);
word.style.left = `${currentLeft - speed}px`;
if (checkCollision(word)) {
startInput(word);
}
if (currentLeft < -word.offsetWidth) {
word.remove();
}
});
if (Math.random() < 0.01) {
placeWord();
}
requestAnimationFrame(gameLoop);
}
document.addEventListener('keydown', (e) => {
if (e.key === 'w') playerY -= speed;
if (e.key === 'a') playerX -= speed;
if (e.key === 's') playerY += speed;
if (e.key === 'd') playerX += speed;
});
typedWord.addEventListener('input', checkInput);
submitWord.addEventListener('click', checkInput);
gameLoop();
</script>
</body>
</html>