From 48e0f8b069f04a411d9bee108c2f688752774265 Mon Sep 17 00:00:00 2001 From: Justin Welenofsky Date: Sun, 11 Dec 2016 20:51:39 -0800 Subject: [PATCH 1/5] 02 - Fix hours typo --- 02 - JS + CSS Clock/index-START.html | 23 +++++++++++++++++++ 02 - JS + CSS Clock/index.html | 33 ++++++++++++++-------------- 2 files changed, 40 insertions(+), 16 deletions(-) diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html index 2712384201..c3894115cb 100644 --- a/02 - JS + CSS Clock/index-START.html +++ b/02 - JS + CSS Clock/index-START.html @@ -61,13 +61,36 @@ background:black; position: absolute; top:50%; + transform-origin: 100%; + transform: rotate(90deg); + transition: all 0.05s cubic-bezier(0,1.7,.58,1); } diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html index 1c777557da..1f0a5a7494 100644 --- a/02 - JS + CSS Clock/index.html +++ b/02 - JS + CSS Clock/index.html @@ -69,27 +69,28 @@ From 40a15655d9f7888f5f624cba29282d99100baa8c Mon Sep 17 00:00:00 2001 From: Justin Welenofsky Date: Sun, 11 Dec 2016 21:43:42 -0800 Subject: [PATCH 2/5] 03 --- 03 - CSS Variables/index.html | 83 +++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 03 - CSS Variables/index.html diff --git a/03 - CSS Variables/index.html b/03 - CSS Variables/index.html new file mode 100644 index 0000000000..94f2bc0469 --- /dev/null +++ b/03 - CSS Variables/index.html @@ -0,0 +1,83 @@ + + + + + Scoped CSS Variables and JS + + +

Update CSS Variables with JS

+ +
+ + + + + + + + +
+ + + + + + + + From bcfc5ddefe35ccb3ef059270962e8c35fa8576ab Mon Sep 17 00:00:00 2001 From: Justin Welenofsky Date: Mon, 12 Dec 2016 07:43:28 -0800 Subject: [PATCH 3/5] 04 --- 04 - Array Cardio Day 1/index.html | 71 ++++++++++++++++++++++++++++++ 1 file changed, 71 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..a1f9945bee --- /dev/null +++ b/04 - Array Cardio Day 1/index.html @@ -0,0 +1,71 @@ + + + + + Array Cardio 💪 + + + + + From 194ff3cd44351a86aff9dbaeb8e1ed9cdaa60f29 Mon Sep 17 00:00:00 2001 From: Justin Welenofsky Date: Fri, 13 Oct 2017 10:33:13 -0700 Subject: [PATCH 4/5] Fun with Canvas --- 04 - Array Cardio Day 1/index-FINISHED.html | 1 + 06 - Type Ahead/index-START.html | 5 +- 08 - Fun with HTML5 Canvas/index-START.html | 98 +++++++++++++++++++++ 3 files changed, 103 insertions(+), 1 deletion(-) diff --git a/04 - Array Cardio Day 1/index-FINISHED.html b/04 - Array Cardio Day 1/index-FINISHED.html index f68d8c3545..7f87277747 100644 --- a/04 - Array Cardio Day 1/index-FINISHED.html +++ b/04 - Array Cardio Day 1/index-FINISHED.html @@ -49,6 +49,7 @@ // Array.prototype.reduce() // 4. How many years did all the inventors live? + console.log(`Inventors: ${JSON.stringify(inventors)}`); const totalYears = inventors.reduce((total, inventor) => { return total + (inventor.passed - inventor.year); }, 0); diff --git a/06 - Type Ahead/index-START.html b/06 - Type Ahead/index-START.html index 1436886918..52926ae7f3 100644 --- a/06 - Type Ahead/index-START.html +++ b/06 - Type Ahead/index-START.html @@ -15,8 +15,11 @@ diff --git a/08 - Fun with HTML5 Canvas/index-START.html b/08 - Fun with HTML5 Canvas/index-START.html index 37c148df07..3db94cdf3f 100644 --- a/08 - Fun with HTML5 Canvas/index-START.html +++ b/08 - Fun with HTML5 Canvas/index-START.html @@ -3,10 +3,108 @@ HTML5 Canvas + +
+ +
-
- -
+ +