RPS Game
Code Breakdown
HTML Structure:
The HTML structure is pretty straightforward. We have a <h1> element for the game title, "Rock, Paper, Scissors".
Inside the <div id="choices">, we have three <div> elements with the class name "choice". These represent the available choices for the player: rock, paper, and scissors.
Below the choices, we have a <div id="result"> element. This is where the result of the game will be displayed.
CSS Styling:
The CSS styles define the appearance of the game elements. We set the font family, alignment, and some basic styles for the choices.
The .choice class defines the styling for each choice element. It adds a border, padding, and a transition effect on hover.
The #result selector sets the font size and margin for the result text.
JavaScript Functions:
The play() function is called when the player clicks on a choice. It takes the user's choice as a parameter.
Inside the play() function, we define an array called choices that holds the possible options: rock, paper, and scissors.
We generate a random index (randomIndex) using Math.random() and Math.floor(), and use it to select a random choice from the choices array as the computer's choice (computerChoice).
We then call the getResult() function, passing the user's choice and the computer's choice as arguments, to determine the result of the game.
Finally, we update the content of the <div id="result"> element with the outcome of the game.
Determining the Result:
The getResult() function takes the user's choice (user) and the computer's choice (computer) as parameters.
It first checks if the choices are the same, indicating a tie. If they are the same, it returns "It's a tie!".
Next, it checks all the possible winning scenarios for the player. If the user's choice beats the computer's choice, it returns "You win!".
If none of the above conditions are met, it means the computer wins, so it returns "Computer wins!".
Program Details (HTML)
<!DOCTYPE html>
<html>
<head>
<title>Rock, Paper, Scissors</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Rock, Paper, Scissors</h1>
<div id="choices">
<div class="choice" onclick="play('rock')">Rock</div>
<div class="choice" onclick="play('paper')">Paper</div>
<div class="choice" onclick="play('scissors')">Scissors</div>
</div>
<div id="result"></div>
<script src="script.js"></script>
</body>
</html>
Program Details (CSS)
body {
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
color: #333;
}
#choices {
display: flex;
justify-content: center;
margin-top: 20px;
}
.choice {
margin: 10px;
padding: 10px;
cursor: pointer;
border: 1px solid #ccc;
border-radius: 4px;
transition: background-color 0.3s;
}
.choice:hover {
background-color: #eee;
}
#result {
font-size: 20px;
margin-top: 20px;
}
Program Details (JAVASCRIPT)
function play(userChoice) {
var choices = ['rock', 'paper', 'scissors'];
var randomIndex = Math.floor(Math.random() * 3);
var computerChoice = choices[randomIndex];
var result = getResult(userChoice, computerChoice);
document.getElementById('result').innerText = "You chose " + userChoice + ", computer chose " + computerChoice + ". " + result;
}
function getResult(user, computer) {
if (user === computer) {
return "It's a tie!";
}
if (
(user === 'rock' && computer === 'scissors') ||
(user === 'paper' && computer === 'rock') ||
(user === 'scissors' && computer === 'paper')
) {
return "You win!";
}
return "Computer wins!";
}