안녕하세요, 개발자 여러분! 저의 최근 프로젝트인 가위바위보 게임을 소개하게 되어 기쁩니다. 이 고전 게임은 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 파일은 가위바위보 버튼 등 게임의 구조와 결과 및 점수를 표시하는 요소를 제공합니다. 다음은 일부 내용입니다.
8b05045a5be5764f313ed5b9168a17e6 49099650ebdc5f3125501fa170048923 93f0f5c25f18dab9d176bd4f6de5d30e 7c8d9f814bcad6a1d7abe4eda5f773e5 26faf3d1af674280d03ba217d87e9421 b2386ffb911b14667cb8f0f91ea547a7Rock Paper Scissors Game6e916e0f7d1e588d4f442bf645aedb2f af75c476cdb7e6c074ca6da9b40841de 90392ec4442ad9ff612213ec639da4832cacc6d41bbb37262a98f745aa00fbf0 9c3bca370b5104690d9ef395f2c5f8d1 6c04bd5ca3fcae76e30b72ad730ca86d 473a967da286a3c736825b4619e7dc30 4a249f0d628e2318394fd9b75b4636b1Rock Paper Scissors Game473f0a7621bec819994bb5020d29372a e388a4556c0f65e1904146cc1a846beeChoose your move:94b3e26ee717c64999d7867364b1b4a3 cfc30845dcc69087db4670cfb20dbb15 06909a81795c7b20fc7f465c5650f5e5👊65281c5ac262bf6d81768915a4a77ac0 8f650b08ee1baf9097487bb7690c2cfe🖐65281c5ac262bf6d81768915a4a77ac0 c434bb80fc2caadf54d6803b6423b351✌65281c5ac262bf6d81768915a4a77ac0 16b28748ea4df4d9c2150843fecfba68 9369b95c0a54fa14078c71ff87b92a5394b3e26ee717c64999d7867364b1b4a3 9c3cee03555a05e7fda6c3ddcac84285 Your score: d8a54a40a42473022fcf25a18ceeb0b8054bdf357c58b8a65c66d7c19c8e4d114 Computer score: 9777042b948140f7c37ec825c7ba0124054bdf357c58b8a65c66d7c19c8e4d114 94b3e26ee717c64999d7867364b1b4a3 16b28748ea4df4d9c2150843fecfba68 ffd6ba4147bda351239915f463e46e38 e388a4556c0f65e1904146cc1a846beeMade with ❤️ by Abhishek Gurjar94b3e26ee717c64999d7867364b1b4a3 16b28748ea4df4d9c2150843fecfba68 36cc49f0c466276486e50c850b7e4956 73a6ac4ed44ffec12cee46588e518a5e
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!