Header Ads

Header ADS

Cricket Game

Cricket Game

Cricket Game

Cricketer

Score: 0

Wickets: 0

body { font-family: Arial, sans-serif; text-align: center; background-color: #f4f4f4; } .game { margin: 50px auto; padding: 20px; border: 2px solid #333; border-radius: 10px; background-color: #fff; width: 300px; } button { padding: 10px 20px; font-size: 16px; cursor: pointer; } #message { margin-top: 20px; font-size: 20px; color: red; } #cricketer-image { width: 100px; /* इमेज का आकार */ margin: 20px 0; } let score = 0; let wickets = 0; // साउंड फ़ाइलें लोड करें const hitSound = new Audio('hit.mp3'); const wicketSound = new Audio('wicket.mp3'); document.getElementById("hit-button").addEventListener("click", function() { const hit = Math.floor(Math.random() * 7); // Random number between 0 and 6 if (hit === 0) { wickets++; document.getElementById("message").innerText = "Wicket!"; document.getElementById("cricketer-image").src = "wicket.png"; // विकेट की इमेज wicketSound.play(); // विकेट साउंड बजाएं } else { score += hit; document.getElementById("message").innerText = `You hit ${hit} runs!`; document.getElementById("cricketer-image").src = "batting.png"; // बैटिंग की इमेज hitSound.play(); // हिट साउंड बजाएं } updateScoreboard(); }); function updateScoreboard() { document.getElementById("score").innerText = score; document.getElementById("wickets").innerText = wickets; }

No comments

Powered by Blogger.