StopWatch

  • Tech Stack: VanillaJS, HTML, sCSS, Javascript, Jquery
  • Website URL: Link
  • Github URL: Project Link

Description-A simple Stopwatch developed using Vanilla JS and styled using CSS, which start, stop and reset the timer.The display timer remains set to '00:00:00:000' initially i.e. (HH:MM:SS:MS) and changes according to the button clicked.

Features & Functionalities-

  1. START BUTTON
  2. Starts the timer as soon as it gets clicked. The time gets computed (initial milliseconds are 10, the respective time units get incremented and addition of zero for single digit number is taken care of) and displayed in the output section.

  3. STOP BUTTON
  4. Pauses the time interval and sets the inner text of the START button as RESUME. On clicking RESUME the time begins again from the point of time where it was paused initially.

  5. PAUSE BUTTON
  6. Resets the timer and time interval , displays '00:00:00:000' in the output section and resets the inner text of the RESUME button to START button.