웹디자이너를 위한 CSS3 도서 요약

다시 보게된 CSS 속성들

text-shadow

1
2
3
p {
text-shadow: 1px 1px 2px #999;
}

다중 배경 이미지

1
2
3
4
5
6
7
8
9
10
11
12
body {
background: url(image.png) no-repeat top left,
url(image2.png) repeat-x bottom left,
url(image3.png) repeat-y top right;
}

/* 또는 투명도를 이용한 방법 */
body {
background: url(image.png) repeat-x fixed -130% 0,
url(image2.png) repeat-x fixed 40% 0,
url(image3.png) repeat-x fixed -80% 0;
}

자세히 보기

자바스크립트 언락 도서 요약

자바스크립트 언락 (2017년 발행)

새롭게 알게된 사실들

조건부 호출

조건문 간략하게 작성

1
2
3
const age = 20
age >= 18 && console.log(`나이가 18세 이상이구나!`)
age >= 18 || console.log(`나이가 18세 미만이구나...`)

함수 호출 단축 조건

1
2
3
4
5
6
7
8
9
10
11
12
function fn(cb) {
cb && cb()
}

// 또는

class AbstractFoo {
constructor() {
// init 메서드가 있을경우에만 호출
this.init && this.init()
}
}

자세히 보기