Speed Typing Game
MẪU CODE GAME ĐÁNH MÁY ĐƠN GIẢN " XEM DƯỚI ĐÂY "
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speed Typing Game</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
margin-bottom: 20px;
}
#word-display {
font-size: 24px;
margin-bottom: 20px;
}
#input-field {
font-size: 18px;
padding: 10px;
width: 100%;
box-sizing: border-box;
border: 2px solid #ddd;
border-radius: 5px;
}
#timer {
font-size: 20px;
margin-top: 20px;
}
#score {
font-size: 20px;
margin-top: 20px;
color: green;
}
#end-message {
font-size: 24px;
color: red;
margin-top: 20px;
}
button {
margin-top: 20px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Speed Typing Game</h1>
<div id="word-display">Nhập từ xuất hiện ở đây!</div>
<input type="text" id="input-field" placeholder="Bắt đầu gõ..." autofocus />
<div id="timer">Thời gian: 60 giây</div>
<div id="score">Điểm: 0</div>
<div id="end-message"></div>
<button onclick="startGame()">Chơi lại</button>
</div>
<script>
const words = [
"chó", "mèo", "chim", "con cá", "xe đạp", "bánh mì", "máy tính", "bút", "quyển sách", "đèn pin",
"cửa sổ", "bàn ghế", "màn hình", "chuột", "bàn phím", "loa", "điện thoại", "nước", "trái cây", "kem"
];
let time = 60;
let score = 0;
let isPlaying;
let currentWord;
const wordDisplay = document.getElementById('word-display');
const inputField = document.getElementById('input-field');
const timerDisplay = document.getElementById('timer');
const scoreDisplay = document.getElementById('score');
const endMessage = document.getElementById('end-message');
function startGame() {
score = 0;
time = 60;
isPlaying = true;
inputField.disabled = false;
inputField.value = '';
inputField.focus();
endMessage.innerText = '';
scoreDisplay.innerText = `Điểm: ${score}`;
timerDisplay.innerText = `Thời gian: ${time} giây`;
showWord(words);
countdown();
inputField.addEventListener('input', checkInput);
}
function showWord(words) {
const randomIndex = Math.floor(Math.random() * words.length);
currentWord = words[randomIndex];
wordDisplay.innerText = currentWord;
}
function countdown() {
const timer = setInterval(() => {
if (time > 0) {
time--;
timerDisplay.innerText = `Thời gian: ${time} giây`;
} else {
clearInterval(timer);
endGame();
}
}, 1000);
}
function checkInput() {
if (inputField.value === currentWord) {
score++;
scoreDisplay.innerText = `Điểm: ${score}`;
inputField.value = '';
showWord(words);
}
}
function endGame() {
isPlaying = false;
inputField.disabled = true;
endMessage.innerText = `Hết giờ! Bạn đã ghi được ${score} điểm.`;
}
</script>
</body>
</html>