일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ignore padding
- 조건부스타일
- 리액트
- parent padding
- vite
- BFC
- 화살표2개
- ?? #null병합연산자
- tailwindCSS
- es6
- debouncing
- 제어컴포넌트
- 부모패딩
- 서초구보건소 #무료CPR교육
- Carousel
- react
- 함수형프로그래밍
- transition
- accordian
- 부모요소의 패딩 무시
- 문제해결
- DOM
- twoarrow
- CustomHook
- QueryClient
- useQueryClient
- ㅡ
- alias설정
- createPortal
- BlockFormattingContext
Archives
- Today
- Total
프론트엔드 첫걸음
css filter를 사용한 색상 반전 모드 본문
- css : filter
- invert - 색상반전
- hue-rotate - 색상환
- 자바스크립트 클래스 private 속성
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields
[Private class features - JavaScript | MDN
Class fields are public by default, but private class members can be created by using a hash # prefix. The privacy encapsulation of these class features is enforced by JavaScript itself.
developer.mozilla.org](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields)
#box[theme="dark-mode"] {
filter: invert(100%) hue-rotate(180deg);
}
class Toggle {
#switchEl;
constructor() {
this.#getEl();
this.#addEvent();
}
#getEl() {
this.#switchEl = document.querySelector('#switch-label')
}
#addEvent() {
this.#switchEl.addEventListener("change", (event) => {
console.log(event.target.checked);
document.querySelector('#box').setAttribute(
"theme",
event.target.checked ? "convert-mode" : ""
);
});
}
}
new Toggle();
See the Pen 스위치 체크박스 by JEONG (@cona) on CodePen.
'개발 공부 > Javascript' 카테고리의 다른 글
함수형 프로그래밍 pipe (0) | 2023.03.24 |
---|---|
createDocumentFragment (0) | 2023.02.04 |
카드 스크롤 애니메이션 1 - (카드 슬라이딩 + 플립) (1) | 2023.01.20 |
클로저 (0) | 2022.10.08 |
화면이 다 안그려져서 이벤트가 안먹을 때 (0) | 2022.08.12 |