RPS Game

Code Breakdown


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!";

}