- How do I record lap times on this stopwatch?
- Press the Lap button or the L key while the stopwatch is running. Each lap appears at the top of the table with its individual time and cumulative split. After two laps, the fastest highlights in green and the slowest in red. You can export all laps as a CSV once you are done.
- Does the stopwatch work on mobile phones?
- Yes. The stopwatch works on iOS Safari and Android Chrome. On mobile, the Wake Lock API keeps the screen on during timing so the display does not turn off mid-session. Tap the buttons to start, lap, and reset.
- What keyboard shortcuts are available?
- Press Space to start or pause, L to record a lap, R to reset, and F to toggle fullscreen. These shortcuts let you control timing without a mouse, useful when your hands are occupied or when you want to minimize reaction delay.
- Can I export my lap data?
- Yes. Click Copy All to copy laps as tab-separated text for any spreadsheet. Click Download CSV to save a file with three columns: lap number, individual lap time, and cumulative split time. Both options appear once at least one lap is recorded.
- Does the stopwatch keep running if I switch browser tabs?
- Yes. Timing uses performance.now() timestamps rather than visual frame updates, so the count continues in the background. The display pauses refreshing to save resources, but the elapsed time when you return is correct. Only pressing Stop pauses the clock.