TimeStopwatch

Countdown Timer

Set a target time and count down. Includes progress ring, sound alerts and browser notifications.

00:05:00

A countdown timer works the opposite of a stopwatch: you set a target duration, hit start, and it counts down to zero. Ours has an animated progress ring, sound alerts, browser notifications and quick presets โ€” everything you need for cooking, workouts, exams and productivity sprints.

How it works

When you press start, we compute the target end timestamp (`Date.now() + duration`) and then, on every animation frame, subtract the current time from it. This approach is drift-proof: even if the tab is backgrounded and JavaScript pauses, the moment you return the timer instantly shows the correct remaining time. When it hits zero, a Web Audio oscillator plays a beep and, if you've granted permission, a browser notification pops up.

Key features

  • Hours, minutes and seconds input
  • Animated progress ring showing time remaining
  • Sound alert with Web Audio (no external files)
  • Browser notifications when the timer completes
  • Quick presets (1m, 3m, 5m, 10m, 25m, 1h)
  • Pause & resume
  • Fully client-side โ€” no ads interrupt the alert

Common use cases

Cooking
Perfect eggs, tea steeping, pasta al dente โ€” the classic use case.
Focused work
Set a 25-minute countdown and eliminate the temptation to "just check" something else.
Exam practice
Simulate exam conditions with strict time boxes.
Public speaking
Practice a 5-minute pitch โ€” knowing you'll get a beep at zero keeps you on-message.

Pro tips

  • โ—†Allow browser notifications on first use โ€” you'll get an alert even if the tab is behind others.
  • โ—†The progress ring makes remaining time readable at a glance from across a room.
  • โ—†Use presets to skip typing during quick sessions.

Common mistakes to avoid

  • โœ•Setting the timer but leaving the browser muted โ€” always test the sound first.
  • โœ•Confusing countdown with a stopwatch (which counts up).

Frequently asked questions

Will the timer ring if I switch tabs?โ–ผ

Yes. The sound plays via the Web Audio API which runs even in background tabs on most browsers.

Can I loop the timer?โ–ผ

Loop mode is on our roadmap. For now, press Start again after it hits zero.

Are notifications supported on iOS?โ–ผ

Sound alerts work on iOS Safari. Push notifications are limited by Apple's WebKit policies.