Created
February 5, 2023 02:45
-
-
Save edutrul/02c48a4df8491cbf26fd6a874e7346f5 to your computer and use it in GitHub Desktop.
Guess country name from 4 choices -- game generated by chat gpt3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Country Image Guess Game</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<div id="game"> | |
<img id="flag" src="" alt="Flag"> | |
<div id="options"> | |
<button id="option1"></button> | |
<button id="option2"></button> | |
<button id="option3"></button> | |
<button id="option4"></button> | |
</div> | |
</div> | |
</body> | |
<script src="script.js"></script> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const countries = { | |
"Argentina": "argentina.jpg", | |
"Australia": "australia.jpg", | |
"Brazil": "brazil.jpg", | |
"Canada": "canada.jpg" | |
}; | |
const flagImage = document.getElementById("flag"); | |
const optionButtons = [ | |
document.getElementById("option1"), | |
document.getElementById("option2"), | |
document.getElementById("option3"), | |
document.getElementById("option4") | |
]; | |
function getRandomCountry() { | |
return Object.keys(countries)[Math.floor(Math.random() * Object.keys(countries).length)]; | |
} | |
function getOptions(answer, countries) { | |
const options = [answer]; | |
while (options.length < 4) { | |
const country = Object.keys(countries)[Math.floor(Math.random() * Object.keys(countries).length)]; | |
if (!options.includes(country)) { | |
options.push(country); | |
} | |
} | |
return options; | |
} | |
function displayOptions(options) { | |
for (let i = 0; i < options.length; i++) { | |
optionButtons[i].innerHTML = options[i]; | |
optionButtons[i].addEventListener("click", function() { | |
checkAnswer(options[i]); | |
}); | |
} | |
} | |
function checkAnswer(answer) { | |
for (const button of optionButtons) { | |
button.disabled = true; | |
} | |
if (answer === currentAnswer) { | |
alert("Correct!"); | |
} else { | |
alert("Incorrect!"); | |
} | |
} | |
let currentAnswer; | |
function playGame() { | |
currentAnswer = getRandomCountry(); | |
flagImage.src = countries[currentAnswer]; | |
const options = getOptions(currentAnswer, countries); | |
displayOptions(options); | |
} | |
play |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment