Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- NonNullable
- 리액트
- React.js
- 반복줄이기
- react
- Chart.js
- 커스텀
- 폰트적용하기
- JS console
- 타입스크립트
- 개발콘텐츠
- TSDoc
- const 단언문
- 공통컴포넌트
- utilty type
- reactjs
- 2022
- click and drag
- returnType
- javascript
- 타입좁히기
- typescript
- 성능최적화
- CSS
- 티스토리꾸미기
- vue.js
- 누구나 자료구조와 알고리즘
- 제네릭
- 레이아웃쪼개기
- React Native
Archives
- Today
- Total
몽땅뚝딱 개발자
[CSS] transform-origin 본문
◽ transform-origin
transform-origin: {세로} {가로}
ex) transform-origin: center left; 이라면 세로 기준으로 center, 가로 기준으로 left부터 정렬된다.
const BarGraph = styled.div`
position: absolute;
left: 0;
top: 0;
width: 100%;
transform: scaleX(${({width}) => width / 100});
transform-origin: center left;
transition: transform 1.5s ease;
height: 100%;
background: ${({isSelected}) => isSelected ? 'rgba(126, 198, 81, 0.7)' : 'rgb(198, 198, 198)'};
z-index: 1;
`
'Development > HTML · CSS' 카테고리의 다른 글
[CSS] border를 div 안쪽으로 넣기 (0) | 2022.06.12 |
---|---|
[CSS] 이미지 비율맞춰 가운데로 넣기 (0) | 2022.05.26 |
[CSS] 텍스트 2줄 이상 시 말줄임('...') 처리하기 (0) | 2022.02.15 |
[CSS] 테두리의 일부 width에만 border 적용하기 (0) | 2022.02.10 |
[HTML] 시맨틱 태그(semantic tag) (0) | 2022.01.10 |
Comments