Bwif Ball

Game Rules

  • Use the Up and Down arrow keys to change the angle of your shot.
  • Use the Left and Right arrow keys to adjust power.
  • Press the Spacebar to shoot.
  • A faint line of your last shot's trajectory will be left on the canvas.
Score: 0
High Score: 0
document.addEventListener('keydown', function(event) { // Check if the key pressed is the ArrowUp (38) or ArrowDown (40) key if (event.key === 'ArrowUp' || event.key === 'ArrowDown' || event.keyCode === 38 || event.keyCode === 40) { // Prevent the default browser action (scrolling) event.preventDefault(); } });