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. Web Tools
  3. Timer & Stopwatch
Add to favorites

Timer & Stopwatch

Dual-mode time tracker with stopwatch including lap times (fastest/slowest highlighting), countdown timer with presets, sound alerts, and browser notifications

A straightforward timer and stopwatch that runs in your browser. Set a countdown or start timing, lap tracking and audio alerts included.

Runs locally in your browserMore web toolsJump to full guide

Related reading

  • The Pomodoro Technique: A Science-Backed Approach to Focused Work13 min read

Initializing in your browser…

You might also like

Pomodoro Timer

Focus timer using Pomodoro technique with work/break sessions, circular progress, presets (Classic 25/5, Deep Work, 52/17), stats tracking, and auto-start options

Password Strength Checker

Analyze password security with 10 criteria checks, entropy calculation, crack time estimation, character breakdown, warnings, and improvement suggestions

CSR Generator

Generate Certificate Signing Requests (CSR) for SSL/TLS certificates with RSA key pairs. Submit to CAs for certificate issuance

Timer & Stopwatch: a worked example

You are timing three rounds of a workout and need lap splits without fumbling for your phone.

Actions

Start → Lap (1:58.4) → Lap (2:05.1) → Lap (1:51.7) → Stop
Timer & Stopwatch produces

Recorded session

Lap 1   01:58.40
Lap 2   02:05.10   (slowest)
Lap 3   01:51.70   (fastest)
Total   05:55.20

The stopwatch records each lap as an independent split while keeping a running total, so you see both per-segment pace and elapsed time at once. Elapsed time is computed from wall-clock timestamps captured at start and at each lap, not by incrementing a counter every tick, so the splits stay accurate even if the timer interval fires unevenly.

What is Timer & Stopwatch?

A straightforward timer and stopwatch that runs in your browser. Set a countdown or start timing, lap tracking and audio alerts included.

Key features

  • Countdown timer with custom duration
  • Stopwatch with lap tracking
  • Audio alert when timer finishes
  • Runs in the background

How to use

  1. 1Switch between timer and stopwatch modes.
  2. 2For the timer, set your duration and hit start.
  3. 3Use the lap button on the stopwatch to record splits.

How it works

This tool combines two modes in a single tabbed interface: a countdown timer and a stopwatch. Both compute elapsed and remaining time from a stored Date.now() reference rather than decrementing a counter on every tick, which is the technique that keeps long runs accurate. The timer records a target timestamp (timerEndTime = Date.now() + totalMs) and each 100ms tick derives the display as timerEndTime - Date.now(); the stopwatch records a start timestamp and shows stopwatchElapsed + (Date.now() - startTime) on a faster 10ms interval. Because the displayed value is always recomputed from the wall clock, when a background browser tab throttles setInterval and a tick is skipped, the time snaps back to the correct value on the next tick instead of accumulating drift. The display format is HH:MM:SS.cc, where the trailing two digits are centiseconds (Math.floor((ms % 1000) / 10)), and the hours field is hidden until the elapsed time crosses one hour.

The timer ships nine quick presets (1, 3, 5, 10, 15, 30, and 45 minutes, plus 1 hour and 2 hours), or you can type a custom duration into separate hours, minutes, and seconds fields. The inputs are clamped on entry: hours accept 0-99 and minutes and seconds accept 0-59, so you cannot enter 90 minutes and must instead express it as 1 hour 30 minutes. When the countdown reaches zero the display panel turns red with a pulsing animation and a 'Timer Complete!' label. The completion alert has two independent channels: a Sound toggle (on by default) and a Notifications toggle (off until you grant browser permission, which is only requested when you click the button, never on page load). One caveat that follows from the throttling behavior above is that while the time math self-corrects on refocus, the chime and the desktop notification fire from inside the interval tick, so on a heavily throttled or frozen background tab the alert itself can arrive late.

The completion sound is synthesized live with the Web Audio API rather than played from an audio file. It builds an ascending C major chord from three sine oscillators at 523.25 Hz (C5), 659.25 Hz (E5), and 783.99 Hz (G5), staggered 0.15s apart, each shaped by a gain envelope that ramps up to 0.3 and decays toward 0.001 for a bell-like fade, and the whole chord is played twice 0.6s apart for emphasis. If the AudioContext is suspended, it calls resume() before scheduling the notes to satisfy the iOS Safari autoplay restriction. The stopwatch mode adds lap timing: each lap stores both its absolute split and its diff from the previous lap, and once more than one lap exists the fastest and slowest laps are highlighted green and red. Unlike the pomodoro-timer tool, this is freeform timing with no enforced work/break cycle and no completed-round tracking.

Tips & best practices

  • For durations like 90 minutes, enter 1 hour and 30 minutes - the minutes field is clamped to a maximum of 59.
  • Turn on Notifications to be alerted when the tab is in the background; the chime alone may be delayed or missed if the browser throttles the inactive tab.
  • In stopwatch mode, lap highlighting (fastest green, slowest red) only appears once you have recorded at least two laps.

Frequently asked questions

Will the timer keep running if I switch tabs?

Yes, it continues in the background and will alert you when time is up.

Can I set hours, not just minutes?

Yes. You can set any combination of hours, minutes, and seconds.

Related tools and how they differ

  • Pomodoro Timer: Runs structured work/break cycles (Classic 25/5, Deep Work, 52/17) with session streaks and stats; use it for focus sessions, not freeform timing.

Further reading

  • The Pomodoro Technique: A Science-Backed Approach to Focused Work13 min read

Private by design

This runs as client-side JavaScript. Keys, tokens, payloads, and other inputs never leave your device.