├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src ├── 01 - JavaScript Drum Kit │ ├── index.html │ ├── main.ts │ ├── sounds │ │ ├── boom.wav │ │ ├── clap.wav │ │ ├── hihat.wav │ │ ├── kick.wav │ │ ├── openhat.wav │ │ ├── ride.wav │ │ ├── snare.wav │ │ ├── tink.wav │ │ └── tom.wav │ └── style.css ├── 02 - JS and CSS Clock │ ├── index.html │ ├── main.ts │ └── style.css ├── 03 - CSS Variables │ ├── index.html │ ├── main.ts │ └── style.css ├── 04 - Array Cardio Day 1 │ ├── index.html │ └── main.ts ├── 05 - Flex Panel Gallery │ ├── index.html │ ├── main.ts │ └── style.css ├── 06 - Type Ahead │ ├── index.html │ ├── main.ts │ └── style.css ├── 07 - Array Cardio Day 2 │ ├── index.html │ └── main.ts ├── 08 - Fun with HTML5 Canvas │ ├── index.html │ ├── main.ts │ └── style.css ├── 09 - Dev Tools Domination │ ├── index.html │ ├── main.ts │ └── style.css ├── 10 - Hold Shift and Check Checkboxes │ ├── index.html │ ├── main.ts │ └── style.css ├── 11 - Custom Video Player │ ├── 652333414.mp4 │ ├── index.html │ ├── main.ts │ └── style.css ├── 12 - Key Sequence Detection │ ├── index.html │ └── main.ts ├── 13 - Slide in on Scroll │ ├── index.html │ ├── main.ts │ └── style.css ├── 14 - JavaScript References VS Copy │ ├── index.html │ └── main.ts ├── 15 - LocalStorage │ ├── index.html │ ├── main.ts │ └── style.css ├── 16 - Mouse Move Shadow │ ├── index.html │ ├── main.ts │ └── style.css ├── 17 - Sort Without Articles │ ├── index.html │ ├── main.ts │ └── style.css ├── 18 - Adding Up Times with Reduce │ ├── index.html │ └── main.ts ├── 19 - Webcam Fun │ ├── index.html │ ├── main.ts │ └── style.css ├── 20 - Speech Detection │ ├── index.html │ ├── main.ts │ └── style.css ├── 21 - Geolocation │ ├── index.html │ ├── main.ts │ └── style.css ├── 22 - Follow Along Link Highlighter │ ├── index.html │ ├── main.ts │ └── style.css ├── 23 - Speech Syntehsis │ ├── index.html │ ├── main.ts │ └── style.css ├── 24 - Sticky Nav │ ├── index.html │ ├── main.ts │ └── style.css ├── 25 - Event Capture, Propagation, Bubbling and Once │ ├── index.html │ ├── main.ts │ └── style.css ├── 26 - Stripe Follow Along Nav │ ├── index.html │ ├── main.ts │ └── style.css ├── 27 - Click and Drag │ ├── index.html │ ├── main.ts │ └── style.css ├── 28 - Video Speed Controller │ ├── index.html │ ├── main.ts │ └── style.css ├── 29 - Countdown Timer │ ├── index.html │ ├── main.ts │ └── style.css └── 30 - Whack A Mole │ ├── dirt.svg │ ├── index.html │ ├── main.ts │ ├── mole.svg │ └── style.css ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/package.json -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/index.html -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/main.ts -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/boom.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/clap.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/hihat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/hihat.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/kick.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/openhat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/openhat.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/ride.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/ride.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/snare.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/tink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/tink.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/sounds/tom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/sounds/tom.wav -------------------------------------------------------------------------------- /src/01 - JavaScript Drum Kit/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/01 - JavaScript Drum Kit/style.css -------------------------------------------------------------------------------- /src/02 - JS and CSS Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/02 - JS and CSS Clock/index.html -------------------------------------------------------------------------------- /src/02 - JS and CSS Clock/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/02 - JS and CSS Clock/main.ts -------------------------------------------------------------------------------- /src/02 - JS and CSS Clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/02 - JS and CSS Clock/style.css -------------------------------------------------------------------------------- /src/03 - CSS Variables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/03 - CSS Variables/index.html -------------------------------------------------------------------------------- /src/03 - CSS Variables/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/03 - CSS Variables/main.ts -------------------------------------------------------------------------------- /src/03 - CSS Variables/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/03 - CSS Variables/style.css -------------------------------------------------------------------------------- /src/04 - Array Cardio Day 1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/04 - Array Cardio Day 1/index.html -------------------------------------------------------------------------------- /src/04 - Array Cardio Day 1/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/04 - Array Cardio Day 1/main.ts -------------------------------------------------------------------------------- /src/05 - Flex Panel Gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/05 - Flex Panel Gallery/index.html -------------------------------------------------------------------------------- /src/05 - Flex Panel Gallery/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/05 - Flex Panel Gallery/main.ts -------------------------------------------------------------------------------- /src/05 - Flex Panel Gallery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/05 - Flex Panel Gallery/style.css -------------------------------------------------------------------------------- /src/06 - Type Ahead/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/06 - Type Ahead/index.html -------------------------------------------------------------------------------- /src/06 - Type Ahead/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/06 - Type Ahead/main.ts -------------------------------------------------------------------------------- /src/06 - Type Ahead/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/06 - Type Ahead/style.css -------------------------------------------------------------------------------- /src/07 - Array Cardio Day 2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/07 - Array Cardio Day 2/index.html -------------------------------------------------------------------------------- /src/07 - Array Cardio Day 2/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/07 - Array Cardio Day 2/main.ts -------------------------------------------------------------------------------- /src/08 - Fun with HTML5 Canvas/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/08 - Fun with HTML5 Canvas/index.html -------------------------------------------------------------------------------- /src/08 - Fun with HTML5 Canvas/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/08 - Fun with HTML5 Canvas/main.ts -------------------------------------------------------------------------------- /src/08 - Fun with HTML5 Canvas/style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/09 - Dev Tools Domination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/09 - Dev Tools Domination/index.html -------------------------------------------------------------------------------- /src/09 - Dev Tools Domination/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/09 - Dev Tools Domination/main.ts -------------------------------------------------------------------------------- /src/09 - Dev Tools Domination/style.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | margin: 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/10 - Hold Shift and Check Checkboxes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/10 - Hold Shift and Check Checkboxes/index.html -------------------------------------------------------------------------------- /src/10 - Hold Shift and Check Checkboxes/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/10 - Hold Shift and Check Checkboxes/main.ts -------------------------------------------------------------------------------- /src/10 - Hold Shift and Check Checkboxes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/10 - Hold Shift and Check Checkboxes/style.css -------------------------------------------------------------------------------- /src/11 - Custom Video Player/652333414.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/11 - Custom Video Player/652333414.mp4 -------------------------------------------------------------------------------- /src/11 - Custom Video Player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/11 - Custom Video Player/index.html -------------------------------------------------------------------------------- /src/11 - Custom Video Player/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/11 - Custom Video Player/main.ts -------------------------------------------------------------------------------- /src/11 - Custom Video Player/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/11 - Custom Video Player/style.css -------------------------------------------------------------------------------- /src/12 - Key Sequence Detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/12 - Key Sequence Detection/index.html -------------------------------------------------------------------------------- /src/12 - Key Sequence Detection/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/12 - Key Sequence Detection/main.ts -------------------------------------------------------------------------------- /src/13 - Slide in on Scroll/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/13 - Slide in on Scroll/index.html -------------------------------------------------------------------------------- /src/13 - Slide in on Scroll/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/13 - Slide in on Scroll/main.ts -------------------------------------------------------------------------------- /src/13 - Slide in on Scroll/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/13 - Slide in on Scroll/style.css -------------------------------------------------------------------------------- /src/14 - JavaScript References VS Copy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/14 - JavaScript References VS Copy/index.html -------------------------------------------------------------------------------- /src/14 - JavaScript References VS Copy/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/14 - JavaScript References VS Copy/main.ts -------------------------------------------------------------------------------- /src/15 - LocalStorage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/15 - LocalStorage/index.html -------------------------------------------------------------------------------- /src/15 - LocalStorage/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/15 - LocalStorage/main.ts -------------------------------------------------------------------------------- /src/15 - LocalStorage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/15 - LocalStorage/style.css -------------------------------------------------------------------------------- /src/16 - Mouse Move Shadow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/16 - Mouse Move Shadow/index.html -------------------------------------------------------------------------------- /src/16 - Mouse Move Shadow/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/16 - Mouse Move Shadow/main.ts -------------------------------------------------------------------------------- /src/16 - Mouse Move Shadow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/16 - Mouse Move Shadow/style.css -------------------------------------------------------------------------------- /src/17 - Sort Without Articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/17 - Sort Without Articles/index.html -------------------------------------------------------------------------------- /src/17 - Sort Without Articles/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/17 - Sort Without Articles/main.ts -------------------------------------------------------------------------------- /src/17 - Sort Without Articles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/17 - Sort Without Articles/style.css -------------------------------------------------------------------------------- /src/18 - Adding Up Times with Reduce/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/18 - Adding Up Times with Reduce/index.html -------------------------------------------------------------------------------- /src/18 - Adding Up Times with Reduce/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/18 - Adding Up Times with Reduce/main.ts -------------------------------------------------------------------------------- /src/19 - Webcam Fun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/19 - Webcam Fun/index.html -------------------------------------------------------------------------------- /src/19 - Webcam Fun/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/19 - Webcam Fun/main.ts -------------------------------------------------------------------------------- /src/19 - Webcam Fun/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/19 - Webcam Fun/style.css -------------------------------------------------------------------------------- /src/20 - Speech Detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/20 - Speech Detection/index.html -------------------------------------------------------------------------------- /src/20 - Speech Detection/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/20 - Speech Detection/main.ts -------------------------------------------------------------------------------- /src/20 - Speech Detection/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/20 - Speech Detection/style.css -------------------------------------------------------------------------------- /src/21 - Geolocation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/21 - Geolocation/index.html -------------------------------------------------------------------------------- /src/21 - Geolocation/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/21 - Geolocation/main.ts -------------------------------------------------------------------------------- /src/21 - Geolocation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/21 - Geolocation/style.css -------------------------------------------------------------------------------- /src/22 - Follow Along Link Highlighter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/22 - Follow Along Link Highlighter/index.html -------------------------------------------------------------------------------- /src/22 - Follow Along Link Highlighter/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/22 - Follow Along Link Highlighter/main.ts -------------------------------------------------------------------------------- /src/22 - Follow Along Link Highlighter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/22 - Follow Along Link Highlighter/style.css -------------------------------------------------------------------------------- /src/23 - Speech Syntehsis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/23 - Speech Syntehsis/index.html -------------------------------------------------------------------------------- /src/23 - Speech Syntehsis/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/23 - Speech Syntehsis/main.ts -------------------------------------------------------------------------------- /src/23 - Speech Syntehsis/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/23 - Speech Syntehsis/style.css -------------------------------------------------------------------------------- /src/24 - Sticky Nav/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/24 - Sticky Nav/index.html -------------------------------------------------------------------------------- /src/24 - Sticky Nav/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/24 - Sticky Nav/main.ts -------------------------------------------------------------------------------- /src/24 - Sticky Nav/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/24 - Sticky Nav/style.css -------------------------------------------------------------------------------- /src/25 - Event Capture, Propagation, Bubbling and Once/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/25 - Event Capture, Propagation, Bubbling and Once/index.html -------------------------------------------------------------------------------- /src/25 - Event Capture, Propagation, Bubbling and Once/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/25 - Event Capture, Propagation, Bubbling and Once/main.ts -------------------------------------------------------------------------------- /src/25 - Event Capture, Propagation, Bubbling and Once/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/25 - Event Capture, Propagation, Bubbling and Once/style.css -------------------------------------------------------------------------------- /src/26 - Stripe Follow Along Nav/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/26 - Stripe Follow Along Nav/index.html -------------------------------------------------------------------------------- /src/26 - Stripe Follow Along Nav/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/26 - Stripe Follow Along Nav/main.ts -------------------------------------------------------------------------------- /src/26 - Stripe Follow Along Nav/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/26 - Stripe Follow Along Nav/style.css -------------------------------------------------------------------------------- /src/27 - Click and Drag/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/27 - Click and Drag/index.html -------------------------------------------------------------------------------- /src/27 - Click and Drag/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/27 - Click and Drag/main.ts -------------------------------------------------------------------------------- /src/27 - Click and Drag/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/27 - Click and Drag/style.css -------------------------------------------------------------------------------- /src/28 - Video Speed Controller/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/28 - Video Speed Controller/index.html -------------------------------------------------------------------------------- /src/28 - Video Speed Controller/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/28 - Video Speed Controller/main.ts -------------------------------------------------------------------------------- /src/28 - Video Speed Controller/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/28 - Video Speed Controller/style.css -------------------------------------------------------------------------------- /src/29 - Countdown Timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/29 - Countdown Timer/index.html -------------------------------------------------------------------------------- /src/29 - Countdown Timer/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/29 - Countdown Timer/main.ts -------------------------------------------------------------------------------- /src/29 - Countdown Timer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/29 - Countdown Timer/style.css -------------------------------------------------------------------------------- /src/30 - Whack A Mole/dirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/30 - Whack A Mole/dirt.svg -------------------------------------------------------------------------------- /src/30 - Whack A Mole/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/30 - Whack A Mole/index.html -------------------------------------------------------------------------------- /src/30 - Whack A Mole/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/30 - Whack A Mole/main.ts -------------------------------------------------------------------------------- /src/30 - Whack A Mole/mole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/30 - Whack A Mole/mole.svg -------------------------------------------------------------------------------- /src/30 - Whack A Mole/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/src/30 - Whack A Mole/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tricinel/TypeScript30/HEAD/yarn.lock --------------------------------------------------------------------------------