oldoc63 / learningFS

Web development back and front
0 stars 0 forks source link

Keyboard Events #868

Open oldoc63 opened 2 years ago

oldoc63 commented 2 years ago

Other popular types of events are keyboard events! keyboard events are triggered by user interaction with keyboard keys in the browser.

The keydown event is fired while a user presses a key down. Key Down Event Image

The keyup event is fired while a user releases a key. Key Up Event Image

The keypress event is fired when a user presses a key down and releases it. This is different from using keydown and keyup events together, because those are two complete events and keypress is one complete event. Key P ress Event Image

Keyboard events have unique properties assigned to their event objects like the .key property that stores the values of the key pressed by the user. You can program the event handler function to react to a specific key, or react to any interaction with the keyboard.

oldoc63 commented 2 years ago
  1. Now it’s time to create a game! Program this code to dribble the ball on the platform using any key on a keyboard. When a user presses a key down, it should lift the ball up. When the user releases the key, the ball should drop.
  2. First, make a function named up() that will raise the .bottom position of the ball to '250px'.
  3. Create an event handler property that runs the up() function when a keydown event fires on the document object, or anywhere on the DOM, as the event target.
  4. Create an event handler property that runs the down() function when a keyup event fires on the document.
  5. Run your code and play around with the keyboard events to make the ball bounce on the platform. You can try keys like the space bar, letter keys, or number keys!