From d8d5714adbe6cc38770a44babaf52f504d2d713f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=81nderson=20M=C3=A9ndez=20Abello?=
<Ánderson Méndez Abello>
Date: Tue, 27 Dec 2016 19:09:16 +0100
Subject: [PATCH 1/4] 15 challenges of javascript30
---
01 - JavaScript Drum Kit/index-START.html | 29 +++++++
01 - JavaScript Drum Kit/style.css | 2 +-
02 - JS + CSS Clock/index-START.html | 30 +++++++
03 - CSS Variables/index-START.html | 32 ++++++-
04 - Array Cardio Day 1/index-START.html | 72 ++++++++++++++++
05 - Flex Panel Gallery/index-FINISHED.html | 1 -
05 - Flex Panel Gallery/index-START.html | 31 +++++++
06 - Type Ahead/index-START.html | 47 ++++++++++
06 - Type Ahead/style.css | 1 -
07 - Array Cardio Day 2/index-FINISHED.html | 5 +-
07 - Array Cardio Day 2/index-START.html | 38 ++++-----
08 - Fun with HTML5 Canvas/index-START.html | 56 ++++++++++++
09 - Dev Tools Domination/index-START.html | 44 ++++++++++
.../index-START.html | 30 +++++++
11 - Custom Video Player/scripts.js | 69 +++++++++++++++
12 - Key Sequence Detection/index-START.html | 21 +++++
13 - Slide in on Scroll/index-START.html | 23 +++--
.../index-START.html | 53 +++++++++++-
15 - LocalStorage/index-START.html | 85 ++++++++++++++++++-
19 files changed, 629 insertions(+), 40 deletions(-)
diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..82a36c88b4 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,35 @@
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
index 3e0a320b37..e0bc4aeb11 100644
--- a/01 - JavaScript Drum Kit/style.css
+++ b/01 - JavaScript Drum Kit/style.css
@@ -23,7 +23,7 @@ body,html {
margin:1rem;
font-size: 1.5rem;
padding:1rem .5rem;
- transition:all .07s;
+ transition:all 1.07s;
width:100px;
text-align: center;
color:white;
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
index 259280d228..76ae69f79a 100644
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -61,12 +61,42 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%;
+ transform: rotate(90deg);
+ transition: all .5s;
+ transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}