일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tailwindCSS
- transition
- parent padding
- BFC
- 부모요소의 패딩 무시
- 제어컴포넌트
- 조건부스타일
- ㅡ
- accordian
- vite
- useQueryClient
- react
- ignore padding
- 리액트
- 함수형프로그래밍
- 부모패딩
- twoarrow
- Carousel
- 문제해결
- 서초구보건소 #무료CPR교육
- es6
- CustomHook
- QueryClient
- alias설정
- createPortal
- DOM
- debouncing
- ?? #null병합연산자
- 화살표2개
- BlockFormattingContext
Archives
- Today
- Total
프론트엔드 첫걸음
var 사용하여 조건부 스타일링 하기 본문
https://codepen.io/cona/pen/wvQvPmy?editors=0110
<div className='loop-slider' style={{
'--duration': `${duration}ms`,
'--direction': reverse ? 'reverse' : 'normal'
}}>
<div className='inner'>
{children}
{children}
</div>
</div>
.loop-slider {
.inner {
display: flex;
width: fit-content;
animation-name: loop;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: var(--direction);
animation-duration: var(--duration);
}
}
'개발 공부 > CSS' 카테고리의 다른 글
clip-path transition (0) | 2023.08.29 |
---|---|
화면 전체가 터치했을때 가로로 터치 이동되는 것 막기 (0) | 2023.07.25 |
CSS border로 삼각형 그리기 (0) | 2023.01.12 |
background 관련 속성 (0) | 2022.12.19 |
white-space: pre-wrap (0) | 2022.10.03 |