From f972b3be9929dd146879b1ae8d065b2e039caefc Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 11:54:29 -0500 Subject: [PATCH 1/9] First lesson complete --- 01 - JavaScript Drum Kit/index.html | 91 +++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 01 - JavaScript Drum Kit/index.html diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html new file mode 100644 index 0000000000..2d6c09f146 --- /dev/null +++ b/01 - JavaScript Drum Kit/index.html @@ -0,0 +1,91 @@ + + + + + JS Drum Kit + + + + + +
+
+ A + clap +
+
+ S + hihat +
+
+ D + kick +
+
+ F + openhat +
+
+ G + boom +
+
+ H + ride +
+
+ J + snare +
+
+ K + tom +
+
+ L + tink +
+
+ + + + + + + + + + + + + + + + From 8aaa5b7c712a13714f86d44448bd6ca23e0e54aa Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 12:08:18 -0500 Subject: [PATCH 2/9] Second lesson complete --- 02 - JS and CSS Clock/index.html | 109 +++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 02 - JS and CSS Clock/index.html diff --git a/02 - JS and CSS Clock/index.html b/02 - JS and CSS Clock/index.html new file mode 100644 index 0000000000..d58ba49983 --- /dev/null +++ b/02 - JS and CSS Clock/index.html @@ -0,0 +1,109 @@ + + + + + JS + CSS Clock + + + + +
+
+
+
+
+
+
+ + + + + + + From 556a9bcd58e30391f5c19d47d2efb6ce4207eec4 Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 12:21:06 -0500 Subject: [PATCH 3/9] Cleanup --- 02 - JS and CSS Clock/index.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/02 - JS and CSS Clock/index.html b/02 - JS and CSS Clock/index.html index d58ba49983..bd5bcd90b4 100644 --- a/02 - JS and CSS Clock/index.html +++ b/02 - JS and CSS Clock/index.html @@ -71,22 +71,19 @@ + + + From 10d8691ab3f54550a2b2e5d8919052c8d3f49aef Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 15:55:20 -0500 Subject: [PATCH 5/9] Cleanup --- 03 - CSS Variables/index.html | 4 ---- 1 file changed, 4 deletions(-) diff --git a/03 - CSS Variables/index.html b/03 - CSS Variables/index.html index b5e1061578..c8e7af6766 100644 --- a/03 - CSS Variables/index.html +++ b/03 - CSS Variables/index.html @@ -67,10 +67,6 @@

Update CSS Variables with JS

const inputs = document.querySelectorAll('.controls input'); inputs.forEach(input => input.addEventListener('change', handleUpdate)); inputs.forEach(input => input.addEventListener('mousemove', handleUpdate)); - - - - From 3d4155019e38ec8af75643d3f73ffd47f25fe50d Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 15:55:45 -0500 Subject: [PATCH 6/9] Fourth lesson complete --- 04 - Array Cardio Day 1/index.html | 91 ++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 04 - Array Cardio Day 1/index.html diff --git a/04 - Array Cardio Day 1/index.html b/04 - Array Cardio Day 1/index.html new file mode 100644 index 0000000000..33ac4df8b4 --- /dev/null +++ b/04 - Array Cardio Day 1/index.html @@ -0,0 +1,91 @@ + + + + + Array Cardio ๐Ÿ’ช + + +

Psst: have a look at the JavaScript Console ๐Ÿ’

+ + + From 21b27ef9e38c00ed729335599e52235579b3c20b Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 15:55:54 -0500 Subject: [PATCH 7/9] Fifth lesson complete --- 05 - Flex Panel Gallery/index.html | 159 +++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 05 - Flex Panel Gallery/index.html diff --git a/05 - Flex Panel Gallery/index.html b/05 - Flex Panel Gallery/index.html new file mode 100644 index 0000000000..6ad2e0bc61 --- /dev/null +++ b/05 - Flex Panel Gallery/index.html @@ -0,0 +1,159 @@ + + + + + Flex Panels ๐Ÿ’ช + + + + + + +
+
+

Hey

+

Let's

+

Dance

+
+
+

Give

+

Take

+

Receive

+
+
+

Experience

+

It

+

Today

+
+
+

Give

+

All

+

You can

+
+
+

Life

+

In

+

Motion

+
+
+ + + + + + + From e1d0d5757d54cff5f4ca2abf95908cad85122a18 Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 16:24:00 -0500 Subject: [PATCH 8/9] Sixth lesson complete --- 06 - Type Ahead/index.html | 59 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 06 - Type Ahead/index.html diff --git a/06 - Type Ahead/index.html b/06 - Type Ahead/index.html new file mode 100644 index 0000000000..bc49eed8a7 --- /dev/null +++ b/06 - Type Ahead/index.html @@ -0,0 +1,59 @@ + + + + + Type Ahead ๐Ÿ‘€ + + + + +
+ +
    +
  • Filter for a city
  • +
  • or a state
  • +
+
+ + + From 4e1ff7a65e5b27dfe88e15b2b8950087004de4a8 Mon Sep 17 00:00:00 2001 From: Clint Harvey Date: Tue, 27 Jun 2017 16:40:45 -0500 Subject: [PATCH 9/9] Seventh lesson complete --- 07 - Array Cardio Day 2/index.html | 58 ++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 07 - Array Cardio Day 2/index.html diff --git a/07 - Array Cardio Day 2/index.html b/07 - Array Cardio Day 2/index.html new file mode 100644 index 0000000000..12cf8d5567 --- /dev/null +++ b/07 - Array Cardio Day 2/index.html @@ -0,0 +1,58 @@ + + + + + Array Cardio ๐Ÿ’ช๐Ÿ’ช + + +

Psst: have a look at the JavaScript Console ๐Ÿ’

+ + +