Skip to content

Commit 3e13da7

Browse files
committed
Done day3, 4, 5, 6
1 parent a14b251 commit 3e13da7

File tree

10 files changed

+184
-36
lines changed

10 files changed

+184
-36
lines changed

06 - Type Ahead/index-START.html

-22
This file was deleted.
File renamed without changes.

03 - CSS Variables/index-START.html @03 - CSS Variables/index-START.html

+25
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,21 @@ <h2>Update CSS Variables with <span class='hl'>JS</span></h2>
2121
<img src="https://source.unsplash.com/7bwQXzbF6KE/800x500">
2222

2323
<style>
24+
:root {
25+
--base: #ffc600;
26+
--spacing: 10px;
27+
--blur: 10px;
28+
}
29+
30+
img {
31+
padding: var(--spacing);
32+
background: var(--base);
33+
filter: blur(var(--blur));
34+
}
35+
36+
.hl {
37+
color: var(--base);
38+
}
2439

2540
/*
2641
misc styles, nothing to do with CSS variables
@@ -45,6 +60,16 @@ <h2>Update CSS Variables with <span class='hl'>JS</span></h2>
4560
</style>
4661

4762
<script>
63+
const inputs = document.querySelectorAll('.controls input');
64+
console.log(inputs);
65+
66+
function handleUpdate() {
67+
const suffix = this.dataset.sizing || '';
68+
document.documentElement.style.setProperty(`--${this.name}`, this.value + suffix);
69+
}
70+
71+
inputs.forEach(input => input.addEventListener('change', handleUpdate));
72+
inputs.forEach(input => input.addEventListener('mousemove', handleUpdate));
4873
</script>
4974

5075
</body>

04 - Array Cardio Day 1/index-START.html @04 - Array Cardio Day 1/index-START.html

+44-1
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,71 @@
3737

3838
// Array.prototype.filter()
3939
// 1. Filter the list of inventors for those who were born in the 1500's
40+
oldInventors = inventors.filter(x => (x.year >= 1500 && x.year < 1600))
41+
console.table(oldInventors)
4042

4143
// Array.prototype.map()
4244
// 2. Give us an array of the inventors first and last names
45+
fullnames = inventors.map((inventor) => `${inventor.first} ${inventor.last}` )
46+
console.log(fullnames)
4347

4448
// Array.prototype.sort()
4549
// 3. Sort the inventors by birthdate, oldest to youngest
50+
sortByAge = inventors.sort((first, second) => first.year > second.year ? 1 : -1);
51+
console.log(sortByAge);
4652

4753
// Array.prototype.reduce()
4854
// 4. How many years did all the inventors live all together?
55+
const totalYears = inventors.reduce((total, inventor) => {
56+
return total + (inventor.passed - inventor.year);
57+
}, 0)
58+
console.log(totalYears)
59+
4960

5061
// 5. Sort the inventors by years lived
62+
const oldest = inventors.sort((a, b) => {
63+
const lastGuy = a.passed - a.year;
64+
const nextGuy = b.passed - b.year;
65+
return lastGuy > nextGuy ? -1 : 1;
66+
})
67+
console.table(oldest);
68+
5169

5270
// 6. create a list of Boulevards in Paris that contain 'de' anywhere in the name
5371
// https://en.wikipedia.org/wiki/Category:Boulevards_in_Paris
54-
72+
// const category = document.querySelector('.mw-category');
73+
// const links = [...category.querySelectorAll('a')];
74+
// const de = links.map(link => link.text).filter(streetName => streetName.includes('de'))
75+
5576

5677
// 7. sort Exercise
5778
// Sort the people alphabetically by last name
79+
const orderedPeople = people.sort((a, b) => {
80+
const [aLastName, aFirstName] = a.split(', ');
81+
const [bLastName, bFirstName] = b.split(', ');
82+
return aLastName > bLastName ? 1 : -1;
83+
});
84+
console.log(orderedPeople)
5885

5986
// 8. Reduce Exercise
6087
// Sum up the instances of each of these
6188
const data = ['car', 'car', 'truck', 'truck', 'bike', 'walk', 'car', 'van', 'bike', 'walk', 'car', 'van', 'car', 'truck' ];
89+
// const counter = data.reduce((all, veichle) => {
90+
// if (veichle in all) {
91+
// all[veichle]++;
92+
// } else {
93+
// all[veichle] = 1;
94+
// }
95+
// return all;
96+
// }, {});
97+
const counter = data.reduce((all, item) => {
98+
if (!all[item]) {
99+
all[item] = 0;
100+
}
101+
all[item]++;
102+
return all;
103+
}, {});
104+
console.log(counter);
62105

63106
</script>
64107
</body>

05 - Flex Panel Gallery/index-START.html @05 - Flex Panel Gallery/index-START.html

+38-7
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,27 @@
2626
.panels {
2727
min-height: 100vh;
2828
overflow: hidden;
29+
display: flex;
2930
}
3031

3132
.panel {
3233
background: #6B0F9C;
3334
box-shadow: inset 0 0 0 5px rgba(255,255,255,0.1);
3435
color: white;
35-
text-align: center;
36-
align-items: center;
3736
/* Safari transitionend event.propertyName === flex */
3837
/* Chrome + FF transitionend event.propertyName === flex-grow */
39-
transition:
40-
font-size 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),
41-
flex 0.7s cubic-bezier(0.61,-0.19, 0.7,-0.11),
42-
background 0.2s;
38+
transition-property: font-size, flex;
39+
transition-duration: 0.7s, 0.7s;
40+
transition-timing-function: cubic-bezier(0.61,-0.19, 0.7,-0.11);
4341
font-size: 20px;
4442
background-size: cover;
4543
background-position: center;
44+
flex: 1;
45+
justify-content: center;
46+
align-items: center;
47+
text-align: center;
48+
display: flex;
49+
flex-direction: column;
4650
}
4751

4852
.panel1 { background-image:url(https://source.unsplash.com/gYl-UtwNg_I/1500x1500); }
@@ -51,13 +55,23 @@
5155
.panel4 { background-image:url(https://source.unsplash.com/ITjiVXcwVng/1500x1500); }
5256
.panel5 { background-image:url(https://source.unsplash.com/3MNzGlQM7qs/1500x1500); }
5357

54-
/* Flex Children */
58+
/* Flex Items */
5559
.panel > * {
5660
margin: 0;
5761
width: 100%;
5862
transition: transform 0.5s;
63+
/* border: solid red 1px; */
64+
flex: 1 0 auto;
65+
display: flex;
66+
justify-content: center;
67+
align-items:center;
5968
}
6069

70+
.panel > *:first-child {transform: translateY(-100%);}
71+
.panel.open-active > *:first-child {transform: translateY(0);}
72+
.panel > *:last-child {transform: translateY(100%);}
73+
.panel.open-active > *:last-child {transform: translateY(0);}
74+
6175
.panel p {
6276
text-transform: uppercase;
6377
font-family: 'Amatic SC', cursive;
@@ -70,6 +84,7 @@
7084
}
7185

7286
.panel.open {
87+
flex: 5;
7388
font-size: 40px;
7489
}
7590

@@ -105,6 +120,22 @@
105120
</div>
106121

107122
<script>
123+
const panels = document.querySelectorAll('.panel');
124+
125+
function toggleOpen() {
126+
console.log('!!!');
127+
this.classList.toggle('open');
128+
}
129+
130+
function toggleActive(e) {
131+
console.log(e.propertyName);
132+
if (e.propertyName.includes('flex')) {
133+
this.classList.toggle('open-active');
134+
};
135+
};
136+
137+
panels.forEach(panel => panel.addEventListener('click', toggleOpen));
138+
panels.forEach(panel => panel.addEventListener('transitionend', toggleActive));
108139

109140
</script>
110141

File renamed without changes.

@06 - Type Ahead/index-START.html

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Type Ahead 👀</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
10+
<form class="search-form">
11+
<input type="text" class="search" placeholder="City or State">
12+
<ul class="suggestions">
13+
<li>Filter for a city</li>
14+
<li>or a state</li>
15+
</ul>
16+
</form>
17+
<script>
18+
const endpoint = 'https://gist.githubusercontent.com/Miserlou/c5cd8364bf9b2420bb29/raw/2bf258763cdddd704f8ffd3ea9a3e81d25e2c6f6/cities.json';
19+
20+
const cities = [];
21+
22+
// const prom = fetch(endpoint);
23+
// console.log(prom); // 데이터를 리턴하지 않고, Promise 객체를 리턴함
24+
25+
// fetch(endpoint).then(blob => console.log(blob.json())); // blob.json()하면 또다른 Promise 객체를 리턴함
26+
27+
fetch(endpoint)
28+
.then(blob => blob.json())
29+
.then(data => cities.push(...data))
30+
31+
function findMatches(wordToMatch, cities) {
32+
return cities.filter(place => {
33+
const regex = new RegExp(wordToMatch, 'gi'); // 자바스크립트 정규표현식!!!
34+
return place.city.match(regex) || place.state.match(regex)
35+
})
36+
};
37+
38+
function numberWithCommas(x) {
39+
return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
40+
};
41+
42+
function displayMatches() {
43+
const matchArray = findMatches(this.value, cities);
44+
const html = matchArray.map(place => {
45+
const regex = new RegExp(this.value, 'gi'); // gi = globally + insensitively(대소문자 구별X)
46+
const cityName = place.city.replace(regex, `<span class="hl">${this.value}</span>`)
47+
const stateName = place.state.replace(regex, `<span class="hl">${this.value}</span>`)
48+
return `
49+
<li>
50+
<span class="name"> ${cityName}, ${stateName}</span>
51+
<span class="name"> ${numberWithCommas(place.population)}</span>
52+
</li>
53+
`;
54+
}).join(''); // array에 담긴 multiple items를 one big string으로 바꿔줌
55+
suggestions.innerHTML = html;
56+
};
57+
58+
const searchInput = document.querySelector('.search');
59+
const suggestions = document.querySelector(".suggestions");
60+
61+
searchInput.addEventListener('change', displayMatches);
62+
searchInput.addEventListener('keyup', displayMatches);
63+
64+
65+
66+
67+
</script>
68+
</body>
69+
</html>

06 - Type Ahead/style.css @06 - Type Ahead/style.css

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
html {
22
box-sizing: border-box;
33
background: #ffc600;
4-
font-family: 'helvetica neue';
4+
font-family: "helvetica neue";
55
font-size: 20px;
66
font-weight: 200;
77
}
88

9-
*, *:before, *:after {
9+
*,
10+
*:before,
11+
*:after {
1012
box-sizing: inherit;
1113
}
1214

@@ -24,7 +26,7 @@ input.search {
2426
margin: 0;
2527
text-align: center;
2628
outline: 0;
27-
border: 10px solid #F7F7F7;
29+
border: 10px solid #f7f7f7;
2830
width: 120%;
2931
left: -10%;
3032
position: relative;
@@ -45,7 +47,7 @@ input.search {
4547
.suggestions li {
4648
background: white;
4749
list-style: none;
48-
border-bottom: 1px solid #D8D8D8;
50+
border-bottom: 1px solid #d8d8d8;
4951
box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
5052
margin: 0;
5153
padding: 20px;
@@ -57,12 +59,12 @@ input.search {
5759

5860
.suggestions li:nth-child(even) {
5961
transform: perspective(100px) rotateX(3deg) translateY(2px) scale(1.001);
60-
background: linear-gradient(to bottom, #ffffff 0%,#EFEFEF 100%);
62+
background: linear-gradient(to bottom, #ffffff 0%, #efefef 100%);
6163
}
6264

6365
.suggestions li:nth-child(odd) {
6466
transform: perspective(100px) rotateX(-3deg) translateY(3px);
65-
background: linear-gradient(to top, #ffffff 0%,#EFEFEF 100%);
67+
background: linear-gradient(to top, #ffffff 0%, #efefef 100%);
6668
}
6769

6870
span.population {

0 commit comments

Comments
 (0)