diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..2f807eadb5 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,26 @@
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
index 3e0a320b37..175e648535 100644
--- a/01 - JavaScript Drum Kit/style.css
+++ b/01 - JavaScript Drum Kit/style.css
@@ -1,6 +1,6 @@
html {
font-size: 10px;
- background:url(http://i.imgur.com/b9r5sEL.jpg) bottom center;
+ background:url(https://chorus.fm/wp-content/uploads/2016/04/fleetfoxes.jpg) bottom center;
background-size: cover;
}
body,html {
diff --git a/02 - JS + CSS Clock/Memo.txt b/02 - JS + CSS Clock/Memo.txt
new file mode 100644
index 0000000000..67c2d7cc85
--- /dev/null
+++ b/02 - JS + CSS Clock/Memo.txt
@@ -0,0 +1,12 @@
+1. CSS clock hand:
+ - use transform: rotate() in CSS file
+ - by default the object rotates in the middle of the object: use transform-origin: x%; to move the origin on the X axis.
+ - set default rotate at 90° to have them face upwards
+ - set a transition for the animation not to be too hard: transition: all 0.5s;
+ - use a transition-timing-funtion to update the way the object moves
+
+2. JS:
+ - setInterval to set the interval at which the hands should move
+ - A function to set the date. You have a date you find which second you are currently in then you transform into degress (make sure that you add 90° to the total because we added that to the CSS)
+ - then you add the style transform rotate by variable degrees.
+
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
index 2712384201..0b0a5455a3 100644
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -61,13 +61,42 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%;
+ transform: rotate(90deg);
+ transition: all 0.1s;
+ transition-timing-function: cubic-bezier(0.54, 2.52, 0.96, 1.09);
}