Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- json
- 문자열
- event
- input
- dom
- 애니메이션
- animation
- 이벤트 위임
- object
- array
- Flex
- ES6
- slice
- 클로저
- video
- This
- ios
- 이벤트
- 비동기
- async
- 스크롤
- 이벤트 루프
- ajax
- Promise
- 배열
- 고차함수
- scroll
- 모듈
- Push
- IntersectionObserver
Archives
- Today
- Total
FEDev Story
DOM 스타일링 본문
el.classList
스타일이 필요할 때 el.classList
를 사용한다.
www.jsfiddle.net/1m33vjcv/4/embed/
위 예제에서 toggle
메서도는 두번째 인수로 전달되는 부울 값에 따라 지정된 클래스를 추가하거나 제거한다.
명시적 스타일
el.style
속성을 사용해 요소에 동적인 스타일 정보를 읽거나 설정할 수 있다. 또는 cssText
를 사용해 스타일을 한번에 지정할 수 있다.
www.jsfiddle.net/9n6Lp7b5/1/embed/
window.getComputedStyle
window.getComputedStyle
는 상속된(계산된) 스타일을 반환한다.
/**
* Getting computed styles
*/
var el = document.querySelector( "h1" ),
css = window.getComputedStyle( el, null );
console.log( css.getPropertyValue( "font-family" ) );
의사요소(pseudo-element) 스타일의 수정이 필요할 경우, 아래와 같이 수정할 수 있다.
www.jsfiddle.net/69gzexb8/embed/
'Javascript > DOM' 카테고리의 다른 글
Document.importNode (0) | 2018.04.05 |
---|---|
속성과 프로퍼티 (0) | 2017.11.06 |
DOM 변경 (0) | 2017.11.01 |
DOM 탐색 (0) | 2017.10.24 |
스크린의 크기 (0) | 2017.02.13 |
Comments