Skip to main content
L
Loopaloo
Buy Us a Coffee
All ToolsImage ProcessingAudio ProcessingVideo ProcessingDocument & TextPDF ToolsCSV & Data AnalysisConverters & EncodersWeb ToolsMath & ScienceGames
Guides & BlogAboutContact
Buy Us a Coffee
L
Loopaloo

Free online tools for developers, designers, and content creators. All processing happens entirely in your browser - your files never leave your device. No uploads, no accounts, complete privacy.

support@loopaloo.com

Tool Categories

  • Image Tools
  • Audio Tools
  • Video Tools
  • Document & Text
  • PDF Tools
  • CSV & Data
  • Converters
  • Web Tools
  • Math & Science
  • Games

Company

  • About Us
  • Contact
  • Blog
  • FAQ

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimer

Support

Buy Us a Coffee

© 2026 Loopaloo. All rights reserved. Built with privacy in mind.

Privacy|Terms|Disclaimer
  1. Home
  2. Games
  3. Breakout
Add to favorites

Breakout

Ball and paddle brick breaker game. Break all bricks for points! Mouse/touch controls, colored brick rows

Bounce a ball off a paddle to smash through rows of bricks. Breakout is pure arcade action, angle your shots, clear the screen, and chase that high score. It is simple to learn, tough to master.

No account, nothing trackedMore gamesJump to full guide

Initializing in your browser…

You might also like

Snake Game

Classic snake game with three speed levels, pause/resume, mobile D-pad controls, and high score tracking

Flappy Bird

Navigate through pipes in this side-scrolling game. Features animated bird, increasing difficulty, and high scores

Mastermind

Code-breaking puzzle game. Guess the secret color code with feedback pegs. Three difficulty levels

A sample round

The ball is descending toward the right edge of the paddle.

Input

Nudge the paddle so the ball strikes its right portion
Breakout produces

Result

Ball ricochets at a sharper rightward angle into the brick wall

The bounce angle depends on where the ball hits the paddle, not just simple reflection, edges impart steeper angles. Skilled play uses this to deliberately steer the ball up the side and trap it above the bricks for rapid clears.

About this game

Bounce a ball off a paddle to smash through rows of bricks. Breakout is pure arcade action, angle your shots, clear the screen, and chase that high score. It is simple to learn, tough to master.

How to play

  1. 1Move your paddle left and right with the mouse, touch, or arrow keys.
  2. 2The ball bounces off the paddle, walls, and bricks.
  3. 3Destroy all bricks to clear the level.
  4. 4Don't let the ball fall past the paddle!

Tips & best practices

  • Aim with the paddle: hit the ball with the center for a near-vertical bounce, or with the left/right edge to deflect it up to ~36° (π/5) sideways and reach awkward bricks.
  • Keep rallies going off the walls and bricks without letting the ball touch your paddle - the combo multiplier climbs toward 2.5x (higher with the Combo Master upgrade) but resets to zero on every paddle hit.
  • Don't waste time on steel bricks; they never break (only a fireball passes through them) and the level-complete check ignores them entirely.
  • Pop an explosive brick when others are clustered within ~90px to trigger a chain reaction that clears a whole pocket at once.

Why play it

  • Arcade nostalgia

    Experience the golden-age arcade classic without quarters.

  • Reflex training

    Tracking the ball and positioning the paddle sharpens reaction speed.

  • Short gaming sessions

    Each round is quick, fitting neatly into spare moments.

  • Power-up strategy

    Learning when to aim for power-ups adds a layer of tactical thinking.

Controls and rules

  • Responsive paddle controls
  • Multiple brick layouts and levels
  • Power-ups like multi-ball and wider paddle
  • Score multiplier for consecutive hits
  • Lives system with limited retries
  • Increasing ball speed as bricks are cleared

How it works

This Breakout runs on an HTML canvas (480x640, retina-scaled up to 2x devicePixelRatio) with a requestAnimationFrame loop that uses delta-time (capped at 32ms per frame) so motion stays consistent regardless of frame rate. The paddle is an aiming tool, not just a wall: on every paddle hit the code computes where the ball struck via hitPoint = (ballX - paddleLeft) / paddleWidth, then sets the rebound angle to (hitPoint - 0.5) * π/2.5 - a center hit (hitPoint 0.5) sends the ball nearly straight up, while the paddle edges throw it off at up to π/5 (~36°) to either side. Ball speed is renormalized every frame to a target of BASE_BALL_SPEED (5) scaled by level (1 + (level-1)*0.04, so +4% per level) and by slow/fast power-up multipliers (0.55x or 1.4x), with an additional ball_speed upgrade modifier, so the ball accelerates steadily as you climb levels. You steer with the mouse or finger (touchmove is handled with passive:false so it can preventDefault scrolling) or the Left/Right arrow keys (also A/D), which move the paddle in 30px steps.

Brick variety is the heart of the difficulty curve. Beyond standard color-coded bricks (red 70 points down to pink 15), the level generator probabilistically seeds silver (2 hits, 100 pts), gold (3 hits, 150 pts), steel (indestructible - 999 hits, only a fireball passes through it), explosive (detonates everything within a 90px radius for a chain reaction), rainbow (200 pts), moving bricks that slide horizontally and bounce off the walls, and regenerating purple bricks that respawn 5 seconds (regenTimer 5000ms) after you clear them. Spawn chances scale with level (e.g. gold capped at 12%, steel at 10%, explosive at 8%, silver at 20%), and clearing a level only requires destroying the breakable bricks - steel is excluded from the win check. Every fifth level (level % 5 === 0) is a boss fight: a large brick with 20 + level*5 hit points, a health bar, side-to-side movement, and an aimed-projectile attack that fires faster as its health drops (every 2000ms above half health, 1200ms below half, 800ms below 25%, plus a three-way spread shot once health is under 50%).

Fourteen power-ups drop from roughly 20% of broken bricks (15% of those are negatives like shrink, fast, and reverse-controls). Highlights with real, distinct behavior: multi splits each ball into three with diverging velocities; fireball lets the ball plow straight through bricks without bouncing; mega doubles the ball radius; ghost phases through bricks; magnet pulls the ball toward the paddle center; shield is a one-shot bottom barrier; and laser/missile arm the paddle - lasers auto-fire every 150ms in pairs, while homing missiles (fired every 600ms) lock onto a random brick (and deal 2 and 5 damage respectively to bosses). Scoring rewards uninterrupted play through a combo multiplier (1 + min(combo-1, 15)*0.1, capped at 2.5x before the optional Combo Master upgrade) that resets to zero the moment the ball touches your paddle, so wall-to-brick rallies are worth far more than safe returns. The game persists everything in localStorage - high score, mute setting, currency, upgrade levels, and a stats object - feeding a meta-progression layer of 15 achievements and a currency you spend on six permanent upgrades (Wide Paddle, Ball Control, Extra Lives, Power Duration, Score Boost, Combo Master). All sound is synthesized live with the Web Audio API (oscillators with frequency sweeps), so there are no audio files to load.

Frequently asked questions

How do I control the paddle angle?

Where the ball hits the paddle affects its bounce angle, hitting the edge sends it at a sharper angle.

What do the power-ups do?

Power-ups can widen your paddle, add extra balls, slow the ball down, or grant extra lives.

Are there multiple levels?

Yes. Each level introduces new brick arrangements and faster ball speeds.

Related tools and how they differ

  • Snake Game: Navigate a lengthening snake on a grid toward food while dodging its own body; pick it for self-collision pathfinding, not ball physics.
  • Flappy Bird: Flap a bird through gaps between scrolling pipes; choose it for precise tap timing against falling momentum, not paddle angle control.
  • Whack-a-Mole: Whack pop-up moles and prioritize golden and king ones while sparing bombs; use it for target selection, not ball deflection physics.

Private by design

The game runs entirely in your browser. No account is needed and no gameplay data is collected.