안녕하세요, 개발자 여러분! 저의 최근 프로젝트인 가위바위보 게임을 소개하게 되어 기쁩니다. 이 고전 게임은 JavaScript 기술을 연습하고 대화형 사용자 경험을 만들 수 있는 재미있는 방법입니다. 코딩을 처음 접하는 사람이든 포트폴리오에 간단하면서도 매력적인 게임을 추가하려는 사람이든 이 프로젝트는 프런트엔드 개발 능력을 향상할 수 있는 좋은 기회를 제공합니다.
가위바위보 게임은 사용자가 컴퓨터를 상대로 인기 있는 게임을 즐길 수 있는 웹 기반 애플리케이션입니다. 이 프로젝트는 사용자 입력을 관리하고, 임의의 컴퓨터 이동을 생성하고, 게임 결과를 결정하는 방법을 보여줍니다. 조건부 논리 및 DOM 조작 작업에 대한 훌륭한 연습입니다.
프로젝트 구조를 간단히 살펴보겠습니다.
Rock-Paper-Scissors/ ├── index.html ├── style.css └── script.js
프로젝트를 시작하려면 다음 단계를 따르세요.
저장소 복제:
git clone https://github.com/abhishekgurjar-in/Rock-Paper-Scissors.git
프로젝트 디렉토리 열기:
cd Rock-Paper-Scissors
프로젝트 실행:
index.html 파일은 가위바위보 버튼 등 게임의 구조와 결과 및 점수를 표시하는 요소를 제공합니다. 다음은 일부 내용입니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Rock Paper Scissors Game</title> <link rel="stylesheet" href="style.css" /> <script src="script.js" defer></script> </head> <body> <div class="main"> <h1>Rock Paper Scissors Game</h1> <p>Choose your move:</p> <div class="buttons"> <button id="rock">👊</button> <button id="paper">🖐</button> <button id="scissors">✌</button> </div> <p id="result"></p> <p id="scores"> Your score: <span id="user-score">0</span> Computer score: <span id="computer-score">0</span> </p> </div> <div class="footer"> <p>Made with ❤️ by Abhishek Gurjar</p> </div> </body> </html>
style.css 파일은 가위바위보 게임의 스타일을 지정하여 현대적이고 사용자 친화적인 레이아웃을 제공합니다. 주요 스타일은 다음과 같습니다.
body { background-color: #f1f1f1; font-family: "Arial", sans-serif; margin: 0; padding: 0; } h1 { font-size: 2rem; text-align: center; margin: 100px; } p { font-size: 1.5rem; font-weight: 600; text-align: center; margin-bottom: 0.5rem; } .buttons { display: flex; justify-content: center; } button { border: none; font-size: 3rem; margin: 0 0.5rem; padding: 0.5rem; cursor: pointer; border-radius: 5px; transition: all 0.3s ease-in-out; } button:hover { opacity: 0.7; } #rock { background-color: #ff0000; } #paper { background-color: #2196f3; } #scissors { background-color: #4caf50; } #user-score { color: #2196f3; } #computer-score { color: #ff0000; } .footer { margin-top: 250px; text-align: center; } .footer p { font-size: 16px; font-weight: 400; }
script.js 파일은 사용자 입력 처리, 컴퓨터 동작 생성, 승자 결정 등 가위바위보 게임의 로직을 관리합니다. 다음은 일부 내용입니다.
const buttons = document.querySelectorAll("button"); const resultEl = document.getElementById("result"); const playerScoreEl = document.getElementById("user-score"); const computerScoreEl = document.getElementById("computer-score"); let playerScore = 0; let computerScore = 0; buttons.forEach((button) => { button.addEventListener("click", () => { const result = playRound(button.id, computerPlay()); resultEl.textContent = result; }); }); function computerPlay() { const choices = ["rock", "paper", "scissors"]; const randomChoice = Math.floor(Math.random() * choices.length); return choices[randomChoice]; } function playRound(playerSelection, computerSelection) { if (playerSelection === computerSelection) { return "It's a tie!"; } else if ( (playerSelection === "rock" && computerSelection === "scissors") || (playerSelection === "paper" && computerSelection === "rock") || (playerSelection === "scissors" && computerSelection === "paper") ) { playerScore++; playerScoreEl.textContent = playerScore; return "You win! " + playerSelection + " beats " + computerSelection; } else { computerScore++; computerScoreEl.textContent = computerScore; return "You lose! " + computerSelection + " beats " + playerSelection; } }
여기에서 가위바위보 게임의 라이브 데모를 확인하실 수 있습니다.
가위바위보 게임을 만드는 것은 JavaScript와 DOM 조작을 연습하는 데 도움이 되는 재미있고 교육적인 경험이었습니다. 이 프로젝트가 여러분이 더 많은 JavaScript 프로젝트를 탐색하고 계속해서 코딩 기술을 쌓는 데 영감을 주기를 바랍니다. 즐거운 코딩하세요!
이 프로젝트는 대화형 및 동적 웹 애플리케이션 제작에 중점을 두고 프런트엔드 개발 기술을 향상시키기 위한 여정의 일환으로 개발되었습니다.
위 내용은 가위바위보 게임 웹사이트 구축의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!