工具 指南
productivity 免费 无需注册

它复制渲染预览窗格的内部HTML,您可以直接粘贴到任何HTML文档或CMS中。

带单圈计时的秒表

正在加载工具…

关于此工具

高精度秒表,支持单圈追踪、最佳/最差单圈高亮和CSV导出。

使用方法

  1. 1 点击"导出CSV"按钮,下载包含每条记录的单圈编号、单圈分段时间和总已用时间的逗号分隔文件。
  2. 2 点击"开始"启动秒表——计时器和Canvas时钟秒针立即开始。
  3. 3 随时点击"单圈"记录分段;表格更新单圈编号、分段时间和总已用时间。
  4. 4 最快单圈行自动高亮为绿色,最慢单圈行自动高亮为红色。

Why this stopwatch is accurate — performance.now() vs the wall clock

A naive stopwatch reads the system clock (Date.now()) to measure elapsed time, which is fragile: the system clock can jump if it syncs with a time server or the user changes it, and it's only reliable to the millisecond in theory. This tool instead uses performance.now(), a monotonic timer that only ever moves forward and is designed for measuring durations rather than telling the time of day. It counts elapsed milliseconds from a fixed origin with sub-millisecond resolution and never goes backward, which is exactly what you want when timing laps. The display updates via requestAnimationFrame, redrawing in sync with your screen so the digits and the clock hand stay smooth without wasting battery on updates you can't see.

Split versus total: the two numbers that matter

Every lap records two values, and confusing them is the most common mistake people make with lap timers. The total is the cumulative time since you pressed Start. The split is the time for that lap alone — the gap between this lap mark and the previous one. The tool computes them as total = elapsed since start and split = total − total at previous lap. Worked example: you press Lap at 1:30, again at 3:10, and again at 4:25. The totals are 1:30, 3:10, 4:25; the splits are 1:30, 1:40, and 1:15. Notice the splits always add back up to the final total — that's the consistency check. When you're comparing performance, the split is what tells you whether each lap got faster or slower; the total just tells you how long you've been going.

Reading the best/worst highlighting

Once you have more than one lap, the table highlights your fastest split in green and your slowest in red. This is computed on the split times, not the totals, so it genuinely flags your quickest and slowest individual laps. For an athlete running intervals, the green row is your peak and the red row is where you faded; for anyone pacing a repetitive task, the spread between green and red is a measure of how consistent you were. A tight spread means even pacing; a wide one means you started too hot or slowed badly at the end.

Common use cases

  • Interval and lap training — time each lap of a track or pool and compare splits to spot fade.
  • Cooking and process timing — mark stages of a multi-step task and see which step takes longest.
  • Productivity and study — time focus blocks, using laps to separate sessions.
  • Experiments and demos — anywhere you need repeatable, millisecond-resolution timing you can export.

Practical tips

  • Export the CSV for analysis. The Export button writes a CSV with lap number, split, and total for every lap, ready to drop into a spreadsheet to chart your pacing or average your splits.
  • Lap is only active while running. You can't record a lap when the stopwatch is stopped — the button disables itself — which prevents accidental zero-length splits.
  • Start doubles as Stop. The same button toggles: it accumulates elapsed time when you stop and resumes cleanly when you start again, so you can pause without losing your total.
  • Reset clears everything. Reset zeroes the time and empties the lap table — there's no undo, so export first if the laps matter.

Common mistakes and pitfalls

  • Comparing totals instead of splits. Totals always increase, so they can't tell you whether a lap was fast or slow. Look at the split column.
  • Forgetting laps don't persist. Unlike some tools here, the stopwatch keeps its data only in memory for the session — reloading the page or hitting Reset loses the laps. Export before you leave.
  • Background tab throttling. Because the visual update rides on the animation frame, switching to another tab can pause the on-screen ticking. The underlying time is measured from timestamps, so your final total stays correct, but the live display may lag until you return.
  • Over-trusting millisecond precision. The clock is precise, but human reaction time when pressing Lap adds tenths of a second. For close comparisons, the trend across many laps is more reliable than a single millisecond reading.

常见问题

{# Alpine.js — self-hosted. (The previous jsdelivr CDN tag had a stale SRI integrity hash, so the browser refused to run it and window.Alpine was never defined — silently breaking every FAQ accordion and Alpine tool.) #}