Показать сообщение отдельно
  #3 (permalink)  
Старый 21.12.2011, 22:20
Аватар для TBIKC
Интересующийся
Отправить личное сообщение для TBIKC Посмотреть профиль Найти все сообщения от TBIKC
 
Регистрация: 17.03.2011
Сообщений: 17

Написал всё до этого момента и вот следующий 6 шаг - запустить )
6. Let's test what we just coded. Save all the files and open index.html in the
web browser.
7. Try pressing the keys to control both paddles. The two paddles should move
smoothly and respond at the same time without interruption.
What just happened?
We have used another approach to capture the keyboard input. Instead of doing the action
once after the key press is detected, we store which keys are pressed and which are not.
Afterwards, we use a JavaScript interval to check the pressed keys every 30 milliseconds.
This approach enables us to know all the keys pressed at the time and so we can move both
paddles at the same time.

Ответить с цитированием