freeCodeCamp/curriculum/challenges/russian/08-coding-interview-prep/take-home-projects/build-a-pong-game.russian.md

39 lines
2.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5a4b7fcdb66f799f199e11db
title: Build a Pong Game
challengeType: 3
isRequired: false
videoUrl: ''
localeTitle: Построить игру в понг
---
## Description
<section id="description"> <strong>Цель:</strong> создать приложение <a href="https://codepen.io" target="_blank">CodePen.io</a> , функционально похожее на это: <a href="https://codepen.io/satyamdev/full/pdMmBp" target="_blank">https://codepen.io/satyamdev/full/pdMmBp</a> . <strong>Правило №1:</strong> Не смотрите на код примера проекта. Подумайте сами. <strong>Правило № 2:</strong> выполните приведенные ниже <a href="https://en.wikipedia.org/wiki/User_story" target="_blank">истории пользователей</a> . Используйте любые библиотеки или API, которые вам нужны. Дайте ему свой личный стиль. <strong>User Story:</strong> Я могу управлять веслом. <strong>User Story:</strong> компьютер может управлять другим веслом. <strong>История пользователя:</strong> весло компьютера является непревзойденным. Он никогда не должен пропустить мяч. <strong>User Story:</strong> Игра отслеживает счет игрока и компьютера. Не забудьте использовать <a href="http://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck/19514" target="_blank">Read-Search-Ask,</a> если вы застряли. Когда вы закончите, нажмите кнопку «Я закончил эту задачу» и включите ссылку на вашу CodePen. Вы можете получить отзывы о своем проекте, поделившись с друзьями на Facebook. </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>