From 647ae8f43c827d6b85533032d8f6be975fb982ab Mon Sep 17 00:00:00 2001
From: Diogo Campos
Date: Mon, 19 Dec 2016 16:21:27 -0200
Subject: [PATCH 01/29] Add my solution to Exercise 01
---
01 - JavaScript Drum Kit/index.html | 96 +++++++++++++++++++++++++++++
1 file changed, 96 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..18a5a725ed
--- /dev/null
+++ b/01 - JavaScript Drum Kit/index.html
@@ -0,0 +1,96 @@
+
+
+
+
+ JS Drum Kit
+
+
+
+
+
+
+
+ A
+ clap
+
+
+ S
+ hihat
+
+
+ D
+ kick
+
+
+ F
+ openhat
+
+
+ G
+ boom
+
+
+ H
+ ride
+
+
+ J
+ snare
+
+
+ K
+ tom
+
+
+ L
+ tink
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 3f333f2915b2dd719500e5bfc05c634073dd59ee Mon Sep 17 00:00:00 2001
From: Diogo Campos
Date: Tue, 20 Dec 2016 14:39:49 -0200
Subject: [PATCH 02/29] Add my solution to exercise 02
---
02 - JS + CSS Clock/index.html | 128 +++++++++++++++++++++++++++++++++
1 file changed, 128 insertions(+)
create mode 100644 02 - JS + CSS Clock/index.html
diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html
new file mode 100644
index 0000000000..b165c0dbc2
--- /dev/null
+++ b/02 - JS + CSS Clock/index.html
@@ -0,0 +1,128 @@
+
+
+
+
+ JS + CSS Clock
+
+
+
+
+
+
+
+
+
+
+
+
From 2286ff1fd56db164418039d022545b564d52b397 Mon Sep 17 00:00:00 2001
From: Diogo Campos
Date: Tue, 20 Dec 2016 14:52:05 -0200
Subject: [PATCH 03/29] Apply E01 solution to index-START.html
---
01 - JavaScript Drum Kit/index-START.html | 30 +++++++
01 - JavaScript Drum Kit/index.html | 96 -----------------------
2 files changed, 30 insertions(+), 96 deletions(-)
delete mode 100644 01 - JavaScript Drum Kit/index.html
diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..18a5a725ed 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,36 @@
diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html
deleted file mode 100644
index 18a5a725ed..0000000000
--- a/01 - JavaScript Drum Kit/index.html
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
- JS Drum Kit
-
-
-
-
-
-
-
- A
- clap
-
-
- S
- hihat
-
-
- D
- kick
-
-
- F
- openhat
-
-
- G
- boom
-
-
- H
- ride
-
-
- J
- snare
-
-
- K
- tom
-
-
- L
- tink
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
From 9ee4ceca726dcfe6dee31d6fce6deb749dbcaa56 Mon Sep 17 00:00:00 2001
From: Diogo Campos
Date: Tue, 20 Dec 2016 14:59:00 -0200
Subject: [PATCH 04/29] Apply E02 solution to index-START.html
---
02 - JS + CSS Clock/index-START.html | 61 ++++++++++++-
02 - JS + CSS Clock/index.html | 128 ---------------------------
2 files changed, 58 insertions(+), 131 deletions(-)
delete mode 100644 02 - JS + CSS Clock/index.html
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
index 2712384201..b165c0dbc2 100644
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -9,7 +9,9 @@
@@ -56,17 +58,70 @@
}
.hand {
- width:50%;
+ width:55%;
height:6px;
- background:black;
position: absolute;
top:50%;
+
+ transform: rotate(90deg);
+ transform-origin: 90.90909091%;
+ transition: all 0.1s;
+ transition-timing-function: cubic-bezier(0.5, 1.8, 0.6, 1);
+ }
+
+ .hour-hand .inner {
+ background: black;
+ margin-left: 25%;
+ width: 75%;
+ height: 100%;
+ }
+
+ .min-hand {
+ background: black;
+ }
+
+ .second-hand {
+ background: #c11;
}
-
-
-
-
-
-
-
-
-
diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html
deleted file mode 100644
index b165c0dbc2..0000000000
--- a/02 - JS + CSS Clock/index.html
+++ /dev/null
@@ -1,128 +0,0 @@
-
-
-