https://github.com/makstyle119/time-converter-app
This app allows you to easily convert between different units of time: minutes, seconds, hours, days and weeks.
https://github.com/makstyle119/time-converter-app
css3 html5 javascript makstyle119 time
Last synced: about 2 months ago
JSON representation
This app allows you to easily convert between different units of time: minutes, seconds, hours, days and weeks.
- Host: GitHub
- URL: https://github.com/makstyle119/time-converter-app
- Owner: makstyle119
- Created: 2023-06-08T22:54:01.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T11:38:43.000Z (almost 2 years ago)
- Last Synced: 2025-02-07T16:43:33.423Z (3 months ago)
- Topics: css3, html5, javascript, makstyle119, time
- Language: HTML
- Homepage: https://makstyle119.github.io/Time-Converter-App/
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **Time Converter App**
This app allows you to easily convert between different units of time: minutes, seconds, hours, days and weeks. You simply enter a value in the input field, select the unit you want to convert from, and select the unit you want to convert to. The app then calculates the conversion and displays the result.
UsageOpen the Time Converter App in your browser
Enter a value in the input field
Select the unit you want to convert from
Select the unit you want to convert to
The converted value will be displayed in the output field## **Supported Units**
Minutes
Seconds
Hours
Days
Weeks## **Conversion Factors**
The following conversion factors are used by the app:
seconds-minutes: 1 / 60,
seconds-hours: 1 / 3600,
seconds-days: 1 / (24 * 60 * 60),
seconds-weeks: 1 / (7 * 24 * 60 * 60),
minutes-seconds: 60,
minutes-hours: 1 / 60,
minutes-days: 1 / (24 * 60),
minutes-weeks: 1 / (7 * 24 * 60),
hours-seconds: 3660,
hours-minutes: 60,
hours-days: 1 / 24,
hours-weeks: 1 / (7 * 24),
days-seconds: 24 * 60 * 60,
days-minutes: 24 * 60,
days-hours: 24,
days-weeks: 1 / 7,
weeks-seconds: 7 * 24 * 60 * 60,
weeks-minutes: 7 * 24 * 60,
weeks-hours: 7 * 24,
weeks-days: 7,## **Contributing**
If you have any suggestions or feedback for the Time Converter App, please feel free to open an issue or submit a pull request on the GitHub repository.
## **License**
The **Time Converter App** is licensed under the **MIT license**. See LICENSE for more information.