diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..9c18270769 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,43 @@
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
index 2712384201..2871c18502 100644
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -61,12 +61,51 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%; /* along x-axis, 0% would be left, 100% is at right.
+ so this will make the origin point the right side,
+ which in our case is the pivot point in the center
+ of the clock face. otherwise each hand spins
+ at the center of the hand, not at one end. */
+ transform: rotate(90deg); /* rotate all the hands 90ยบ so they start at 12 */
+ transition: all 0.05s; /* how long the transition takes (the 1-sec "tick" )*/
+ transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
+ /* this defines how the hand moves during transition. this one moves and
+ bounces back a little, for a fun effect. there's like a little
+ gui editor in chrome dev tools you can use for this?? */
}