버그 수정

This commit is contained in:
2025-07-03 07:18:14 +09:00
parent 5d2b372c14
commit 7b0b109fb4
+8 -3
View File
@@ -489,9 +489,13 @@
toggleBtn.textContent = '시작';
toggleBtn.classList.remove('running');
// 자동으로 시간 입력 및 계산
const seconds = elapsedTime / 1000;
document.getElementById('time').value = perRound(seconds, 3);
// 스톱워치 정지 시 정확한 시간 계산
updateStopwatchDisplay(); // 스톱워치 표시 갱신
// 스톱워치와 동일한 값을 입력 필드에 설정
const exactSeconds = Math.floor((elapsedTime % 60000) / 1000) + ((elapsedTime % 1000) / 1000);
document.getElementById('time').value = exactSeconds.toFixed(3);
calculateSpeed();
}
}
@@ -523,6 +527,7 @@
const display = `${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}.${milliseconds.toString().padStart(3, '0')}`;
document.getElementById('stopwatch-display').textContent = display;
}