From fb19a17d891a0510194d16823bb65833827239ed Mon Sep 17 00:00:00 2001 From: Florin Pop Date: Fri, 12 Apr 2019 16:46:03 +0300 Subject: [PATCH] added project: Stopwatch App --- Projects/Stopwatch-App.md | 25 +++++++++++++++++++++++++ README.md | 1 + 2 files changed, 26 insertions(+) create mode 100644 Projects/Stopwatch-App.md diff --git a/Projects/Stopwatch-App.md b/Projects/Stopwatch-App.md new file mode 100644 index 00000000..ce16e4aa --- /dev/null +++ b/Projects/Stopwatch-App.md @@ -0,0 +1,25 @@ +# Stopwatch App + +**Tier:** 1-Beginner + +A stopwatch helps you track the time you spent on activities. + +## User Stories + +- [ ] User can `start` a clock +- [ ] User can `stop` the clock +- [ ] When the clock is `stopped` the user can click `start` again and the clock will continue counting up +- [ ] User can `restart` the clock + +## Bonus features + +- [ ] User can create `laps` - these will be displayed on the screen +- [ ] User can clear all the laps + +## Useful links and resources + +- [setInterval](https://www.w3schools.com/jsref/met_win_setinterval.asp) + +## Example projects + +- [StopWatch by Billy Brown](https://codepen.io/_Billy_Brown/pen/dbJeh) diff --git a/README.md b/README.md index 52e2463e..4f00eef3 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ required to complete them. | [Quiz App](./Projects/Quiz-App.md) | Test your knowledge by answering questions | 1-Beginner | | [Roman to Decimal Converter](./Projects/Roman-to-Decimal-Converter.md) | Convert Roman to Decimal numbers | 1-Beginner | | [Slider Design](./Projects/Slider-Design.md) | Display images using a slider control | 1-Beginner | +| [Stopwatch App](./Projects/Stopwatch-App.md) | Count time spent on activities | 1-Beginner | | [TrueOrFalse](./Projects/True-or-False-App.md) | Identify the result of a conditional comparison | 1-Beginner | | [Wind Chill](./Projects/Windchill-App.md) | Calculate the windchill factor from an actual temperature | 1-Beginner |