├── .gitattributes ├── .github └── issue_template.md ├── 01 - JavaScript Drum Kit ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html ├── index-START.html ├── index-draft.html ├── sounds │ ├── boom.wav │ ├── clap.wav │ ├── hihat.wav │ ├── kick.wav │ ├── openhat.wav │ ├── ride.wav │ ├── snare.wav │ ├── tink.wav │ └── tom.wav └── style.css ├── 02 - JS + CSS Clock ├── README.md ├── background.jpg ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 03 - CSS Variables ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 04 - Array Cardio Day 1 ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 05 - Flex Panel Gallery ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html ├── index-SOYAINE2.html └── index-START.html ├── 06 - Type Ahead ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html ├── index-START.html └── style.css ├── 07 - Array Cardio Day 2 ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 08 - Fun with HTML5 Canvas ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 09 - Dev Tools Domination ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 10 - Hold Shift and Check Checkboxes ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 11 - Custom Video Player ├── README.md ├── index.html ├── scripts-FINISHED.js ├── scripts.js └── style.css ├── 12 - Key Sequence Detection ├── README.md ├── index-FINISHED.html └── index-START.html ├── 13 - Slide in on Scroll ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 14 - JavaScript References VS Copying ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html └── index-START.html ├── 15 - LocalStorage ├── README.md ├── index-FINISHED.html ├── index-SOYAINE.html ├── index-START.html └── style.css ├── 16 - Mouse Move Shadow ├── README.md ├── effects.png ├── index-finished-es5.html ├── index-finished-es6.html ├── index-start.html └── style.css ├── 17 - Sort Without Articles ├── README.md ├── effects.png ├── index-finished-Dashrun-es5.html ├── index-finished-Dashrun-es6.html ├── index-start.html └── style.css ├── 18 - AddingUpTimesWithReduce ├── README.md ├── effects.png ├── index-finished-Dashrun-es5.html ├── index-finished-Dashrun-es6.html └── index-start.html ├── 19 - Webcam Fun ├── README.md ├── effects.png ├── index-finished-Dashrun.html ├── index-start.html ├── script.js └── style.css ├── 20 - Speech Detection ├── README.md ├── effects.png ├── index-finished-Dashrun.html └── index-start.html ├── 21 - Geolocation ├── README.md ├── effects.png ├── index-finished-Dashrun.html └── index-start.html ├── 22 - Follow Along Link Highlighter ├── README.md ├── effects.gif ├── index-finished-Dashrun.html ├── index-start.html └── style.css ├── 23 - Speech Synthesis ├── README.md ├── effects.png ├── index-finished-Dashrun.html ├── index-start.html └── style.css ├── 24 - Sticky Nav ├── README.md ├── app.js ├── effects.gif ├── index-finished-Dashrun.html ├── index-start.html └── style.css ├── 25 - Event Related ├── README.md ├── effects.png ├── index-finished-Dashrun.html └── index-start.html ├── 26 - Stripe Follow Along Nav ├── README.md ├── effect.png ├── index-finished-Dashrun.html └── index-start.html ├── 27 - Click and Drag ├── README.md ├── effect.png ├── index-finished-Dashrun.html ├── index-start.html └── style.css ├── 28 - Video Speed Controller ├── README.md ├── effect.png ├── index-finished-Dashrun.html ├── index-start.html └── style.css ├── 29 - Countdown Timer ├── README.md ├── effect.png ├── index-start.html ├── scripts-START.js └── style.css ├── LICENSE ├── README.md ├── SUMMARY.md ├── _config.yml └── test.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=javascript 2 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/README.md -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/index-FINISHED.html -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/index-SOYAINE.html -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/index-START.html -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/index-draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/index-draft.html -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/boom.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/clap.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/hihat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/hihat.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/kick.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/openhat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/openhat.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/ride.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/ride.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/snare.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/tink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/tink.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/sounds/tom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/sounds/tom.wav -------------------------------------------------------------------------------- /01 - JavaScript Drum Kit/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/01 - JavaScript Drum Kit/style.css -------------------------------------------------------------------------------- /02 - JS + CSS Clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/02 - JS + CSS Clock/README.md -------------------------------------------------------------------------------- /02 - JS + CSS Clock/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/02 - JS + CSS Clock/background.jpg -------------------------------------------------------------------------------- /02 - JS + CSS Clock/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/02 - JS + CSS Clock/index-FINISHED.html -------------------------------------------------------------------------------- /02 - JS + CSS Clock/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/02 - JS + CSS Clock/index-SOYAINE.html -------------------------------------------------------------------------------- /02 - JS + CSS Clock/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/02 - JS + CSS Clock/index-START.html -------------------------------------------------------------------------------- /03 - CSS Variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/03 - CSS Variables/README.md -------------------------------------------------------------------------------- /03 - CSS Variables/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/03 - CSS Variables/index-FINISHED.html -------------------------------------------------------------------------------- /03 - CSS Variables/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/03 - CSS Variables/index-SOYAINE.html -------------------------------------------------------------------------------- /03 - CSS Variables/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/03 - CSS Variables/index-START.html -------------------------------------------------------------------------------- /04 - Array Cardio Day 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/04 - Array Cardio Day 1/README.md -------------------------------------------------------------------------------- /04 - Array Cardio Day 1/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/04 - Array Cardio Day 1/index-FINISHED.html -------------------------------------------------------------------------------- /04 - Array Cardio Day 1/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/04 - Array Cardio Day 1/index-SOYAINE.html -------------------------------------------------------------------------------- /04 - Array Cardio Day 1/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/04 - Array Cardio Day 1/index-START.html -------------------------------------------------------------------------------- /05 - Flex Panel Gallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/05 - Flex Panel Gallery/README.md -------------------------------------------------------------------------------- /05 - Flex Panel Gallery/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/05 - Flex Panel Gallery/index-FINISHED.html -------------------------------------------------------------------------------- /05 - Flex Panel Gallery/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/05 - Flex Panel Gallery/index-SOYAINE.html -------------------------------------------------------------------------------- /05 - Flex Panel Gallery/index-SOYAINE2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/05 - Flex Panel Gallery/index-SOYAINE2.html -------------------------------------------------------------------------------- /05 - Flex Panel Gallery/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/05 - Flex Panel Gallery/index-START.html -------------------------------------------------------------------------------- /06 - Type Ahead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/06 - Type Ahead/README.md -------------------------------------------------------------------------------- /06 - Type Ahead/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/06 - Type Ahead/index-FINISHED.html -------------------------------------------------------------------------------- /06 - Type Ahead/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/06 - Type Ahead/index-SOYAINE.html -------------------------------------------------------------------------------- /06 - Type Ahead/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/06 - Type Ahead/index-START.html -------------------------------------------------------------------------------- /06 - Type Ahead/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/06 - Type Ahead/style.css -------------------------------------------------------------------------------- /07 - Array Cardio Day 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/07 - Array Cardio Day 2/README.md -------------------------------------------------------------------------------- /07 - Array Cardio Day 2/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/07 - Array Cardio Day 2/index-FINISHED.html -------------------------------------------------------------------------------- /07 - Array Cardio Day 2/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/07 - Array Cardio Day 2/index-SOYAINE.html -------------------------------------------------------------------------------- /07 - Array Cardio Day 2/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/07 - Array Cardio Day 2/index-START.html -------------------------------------------------------------------------------- /08 - Fun with HTML5 Canvas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/08 - Fun with HTML5 Canvas/README.md -------------------------------------------------------------------------------- /08 - Fun with HTML5 Canvas/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/08 - Fun with HTML5 Canvas/index-FINISHED.html -------------------------------------------------------------------------------- /08 - Fun with HTML5 Canvas/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/08 - Fun with HTML5 Canvas/index-SOYAINE.html -------------------------------------------------------------------------------- /08 - Fun with HTML5 Canvas/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/08 - Fun with HTML5 Canvas/index-START.html -------------------------------------------------------------------------------- /09 - Dev Tools Domination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/09 - Dev Tools Domination/README.md -------------------------------------------------------------------------------- /09 - Dev Tools Domination/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/09 - Dev Tools Domination/index-FINISHED.html -------------------------------------------------------------------------------- /09 - Dev Tools Domination/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/09 - Dev Tools Domination/index-SOYAINE.html -------------------------------------------------------------------------------- /09 - Dev Tools Domination/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/09 - Dev Tools Domination/index-START.html -------------------------------------------------------------------------------- /10 - Hold Shift and Check Checkboxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/10 - Hold Shift and Check Checkboxes/README.md -------------------------------------------------------------------------------- /10 - Hold Shift and Check Checkboxes/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/10 - Hold Shift and Check Checkboxes/index-FINISHED.html -------------------------------------------------------------------------------- /10 - Hold Shift and Check Checkboxes/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/10 - Hold Shift and Check Checkboxes/index-SOYAINE.html -------------------------------------------------------------------------------- /10 - Hold Shift and Check Checkboxes/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/10 - Hold Shift and Check Checkboxes/index-START.html -------------------------------------------------------------------------------- /11 - Custom Video Player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/11 - Custom Video Player/README.md -------------------------------------------------------------------------------- /11 - Custom Video Player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/11 - Custom Video Player/index.html -------------------------------------------------------------------------------- /11 - Custom Video Player/scripts-FINISHED.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/11 - Custom Video Player/scripts-FINISHED.js -------------------------------------------------------------------------------- /11 - Custom Video Player/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /11 - Custom Video Player/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/11 - Custom Video Player/style.css -------------------------------------------------------------------------------- /12 - Key Sequence Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/12 - Key Sequence Detection/README.md -------------------------------------------------------------------------------- /12 - Key Sequence Detection/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/12 - Key Sequence Detection/index-FINISHED.html -------------------------------------------------------------------------------- /12 - Key Sequence Detection/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/12 - Key Sequence Detection/index-START.html -------------------------------------------------------------------------------- /13 - Slide in on Scroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/13 - Slide in on Scroll/README.md -------------------------------------------------------------------------------- /13 - Slide in on Scroll/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/13 - Slide in on Scroll/index-FINISHED.html -------------------------------------------------------------------------------- /13 - Slide in on Scroll/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/13 - Slide in on Scroll/index-SOYAINE.html -------------------------------------------------------------------------------- /13 - Slide in on Scroll/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/13 - Slide in on Scroll/index-START.html -------------------------------------------------------------------------------- /14 - JavaScript References VS Copying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/14 - JavaScript References VS Copying/README.md -------------------------------------------------------------------------------- /14 - JavaScript References VS Copying/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/14 - JavaScript References VS Copying/index-FINISHED.html -------------------------------------------------------------------------------- /14 - JavaScript References VS Copying/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/14 - JavaScript References VS Copying/index-SOYAINE.html -------------------------------------------------------------------------------- /14 - JavaScript References VS Copying/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/14 - JavaScript References VS Copying/index-START.html -------------------------------------------------------------------------------- /15 - LocalStorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/15 - LocalStorage/README.md -------------------------------------------------------------------------------- /15 - LocalStorage/index-FINISHED.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/15 - LocalStorage/index-FINISHED.html -------------------------------------------------------------------------------- /15 - LocalStorage/index-SOYAINE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/15 - LocalStorage/index-SOYAINE.html -------------------------------------------------------------------------------- /15 - LocalStorage/index-START.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/15 - LocalStorage/index-START.html -------------------------------------------------------------------------------- /15 - LocalStorage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/15 - LocalStorage/style.css -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/README.md -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/effects.png -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/index-finished-es5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/index-finished-es5.html -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/index-finished-es6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/index-finished-es6.html -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/index-start.html -------------------------------------------------------------------------------- /16 - Mouse Move Shadow/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/16 - Mouse Move Shadow/style.css -------------------------------------------------------------------------------- /17 - Sort Without Articles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/README.md -------------------------------------------------------------------------------- /17 - Sort Without Articles/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/effects.png -------------------------------------------------------------------------------- /17 - Sort Without Articles/index-finished-Dashrun-es5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/index-finished-Dashrun-es5.html -------------------------------------------------------------------------------- /17 - Sort Without Articles/index-finished-Dashrun-es6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/index-finished-Dashrun-es6.html -------------------------------------------------------------------------------- /17 - Sort Without Articles/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/index-start.html -------------------------------------------------------------------------------- /17 - Sort Without Articles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/17 - Sort Without Articles/style.css -------------------------------------------------------------------------------- /18 - AddingUpTimesWithReduce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/18 - AddingUpTimesWithReduce/README.md -------------------------------------------------------------------------------- /18 - AddingUpTimesWithReduce/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/18 - AddingUpTimesWithReduce/effects.png -------------------------------------------------------------------------------- /18 - AddingUpTimesWithReduce/index-finished-Dashrun-es5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/18 - AddingUpTimesWithReduce/index-finished-Dashrun-es5.html -------------------------------------------------------------------------------- /18 - AddingUpTimesWithReduce/index-finished-Dashrun-es6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/18 - AddingUpTimesWithReduce/index-finished-Dashrun-es6.html -------------------------------------------------------------------------------- /18 - AddingUpTimesWithReduce/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/18 - AddingUpTimesWithReduce/index-start.html -------------------------------------------------------------------------------- /19 - Webcam Fun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/README.md -------------------------------------------------------------------------------- /19 - Webcam Fun/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/effects.png -------------------------------------------------------------------------------- /19 - Webcam Fun/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/index-finished-Dashrun.html -------------------------------------------------------------------------------- /19 - Webcam Fun/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/index-start.html -------------------------------------------------------------------------------- /19 - Webcam Fun/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/script.js -------------------------------------------------------------------------------- /19 - Webcam Fun/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/19 - Webcam Fun/style.css -------------------------------------------------------------------------------- /20 - Speech Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/20 - Speech Detection/README.md -------------------------------------------------------------------------------- /20 - Speech Detection/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/20 - Speech Detection/effects.png -------------------------------------------------------------------------------- /20 - Speech Detection/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/20 - Speech Detection/index-finished-Dashrun.html -------------------------------------------------------------------------------- /20 - Speech Detection/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/20 - Speech Detection/index-start.html -------------------------------------------------------------------------------- /21 - Geolocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/21 - Geolocation/README.md -------------------------------------------------------------------------------- /21 - Geolocation/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/21 - Geolocation/effects.png -------------------------------------------------------------------------------- /21 - Geolocation/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/21 - Geolocation/index-finished-Dashrun.html -------------------------------------------------------------------------------- /21 - Geolocation/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/21 - Geolocation/index-start.html -------------------------------------------------------------------------------- /22 - Follow Along Link Highlighter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/22 - Follow Along Link Highlighter/README.md -------------------------------------------------------------------------------- /22 - Follow Along Link Highlighter/effects.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/22 - Follow Along Link Highlighter/effects.gif -------------------------------------------------------------------------------- /22 - Follow Along Link Highlighter/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/22 - Follow Along Link Highlighter/index-finished-Dashrun.html -------------------------------------------------------------------------------- /22 - Follow Along Link Highlighter/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/22 - Follow Along Link Highlighter/index-start.html -------------------------------------------------------------------------------- /22 - Follow Along Link Highlighter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/22 - Follow Along Link Highlighter/style.css -------------------------------------------------------------------------------- /23 - Speech Synthesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/23 - Speech Synthesis/README.md -------------------------------------------------------------------------------- /23 - Speech Synthesis/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/23 - Speech Synthesis/effects.png -------------------------------------------------------------------------------- /23 - Speech Synthesis/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/23 - Speech Synthesis/index-finished-Dashrun.html -------------------------------------------------------------------------------- /23 - Speech Synthesis/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/23 - Speech Synthesis/index-start.html -------------------------------------------------------------------------------- /23 - Speech Synthesis/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/23 - Speech Synthesis/style.css -------------------------------------------------------------------------------- /24 - Sticky Nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/README.md -------------------------------------------------------------------------------- /24 - Sticky Nav/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/app.js -------------------------------------------------------------------------------- /24 - Sticky Nav/effects.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/effects.gif -------------------------------------------------------------------------------- /24 - Sticky Nav/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/index-finished-Dashrun.html -------------------------------------------------------------------------------- /24 - Sticky Nav/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/index-start.html -------------------------------------------------------------------------------- /24 - Sticky Nav/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/24 - Sticky Nav/style.css -------------------------------------------------------------------------------- /25 - Event Related/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/25 - Event Related/README.md -------------------------------------------------------------------------------- /25 - Event Related/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/25 - Event Related/effects.png -------------------------------------------------------------------------------- /25 - Event Related/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/25 - Event Related/index-finished-Dashrun.html -------------------------------------------------------------------------------- /25 - Event Related/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/25 - Event Related/index-start.html -------------------------------------------------------------------------------- /26 - Stripe Follow Along Nav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/26 - Stripe Follow Along Nav/README.md -------------------------------------------------------------------------------- /26 - Stripe Follow Along Nav/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/26 - Stripe Follow Along Nav/effect.png -------------------------------------------------------------------------------- /26 - Stripe Follow Along Nav/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/26 - Stripe Follow Along Nav/index-finished-Dashrun.html -------------------------------------------------------------------------------- /26 - Stripe Follow Along Nav/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/26 - Stripe Follow Along Nav/index-start.html -------------------------------------------------------------------------------- /27 - Click and Drag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/27 - Click and Drag/README.md -------------------------------------------------------------------------------- /27 - Click and Drag/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/27 - Click and Drag/effect.png -------------------------------------------------------------------------------- /27 - Click and Drag/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/27 - Click and Drag/index-finished-Dashrun.html -------------------------------------------------------------------------------- /27 - Click and Drag/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/27 - Click and Drag/index-start.html -------------------------------------------------------------------------------- /27 - Click and Drag/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/27 - Click and Drag/style.css -------------------------------------------------------------------------------- /28 - Video Speed Controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/28 - Video Speed Controller/README.md -------------------------------------------------------------------------------- /28 - Video Speed Controller/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/28 - Video Speed Controller/effect.png -------------------------------------------------------------------------------- /28 - Video Speed Controller/index-finished-Dashrun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/28 - Video Speed Controller/index-finished-Dashrun.html -------------------------------------------------------------------------------- /28 - Video Speed Controller/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/28 - Video Speed Controller/index-start.html -------------------------------------------------------------------------------- /28 - Video Speed Controller/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/28 - Video Speed Controller/style.css -------------------------------------------------------------------------------- /29 - Countdown Timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/29 - Countdown Timer/README.md -------------------------------------------------------------------------------- /29 - Countdown Timer/effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/29 - Countdown Timer/effect.png -------------------------------------------------------------------------------- /29 - Countdown Timer/index-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/29 - Countdown Timer/index-start.html -------------------------------------------------------------------------------- /29 - Countdown Timer/scripts-START.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/29 - Countdown Timer/scripts-START.js -------------------------------------------------------------------------------- /29 - Countdown Timer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/29 - Countdown Timer/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soyaine/JavaScript30/HEAD/_config.yml -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------