티스토리 뷰
Transform
- 요소를 움직이거나, 회전, 기울기 등 여러 작업을 할때 사용합니다.
- translate | rotate | scale
- translate -> 요소를 움직일때 사용한다.
.transform {
transform : translate(10px, 30px);
/* translate(x,y) -> translateX(), translateY() */
}
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/CSS/transform -->
<style>
.box {
width: 100px;
height: 120px;
background-color: brown;
margin-bottom: 20px;
}
.box1 {
transform: translateX(100px);
}
.box2 {
transform: translate(-50px, -20px);
/* translate(x,y) -> translateX(), translateY() */
}
.box3 {
transform: scale(1.2);
/* scale(1) -> scale(1, 1) */
}
.box4 {
transform: rotate(45deg);
/* rotate(Ndeg) */
}
.box5 {
transform: translate(100px, 100px) scale(2) rotate(46deg);
}
</style>
</head>
<body>
<div class="box box1"></div>
<div class="box box2"></div>
<div class="box box3"></div>
<div class="box box4"></div>
<div class="box box5"></div>
</body>
</html>
*
https://developer.mozilla.org/ko/docs/Web/CSS/transform
'CSS' 카테고리의 다른 글
📢 CSS Selector (0) | 2020.11.19 |
---|---|
🔦 Visibility (0) | 2020.11.15 |
🍟 Opacity (0) | 2020.11.11 |
🍔 Box Shadow (0) | 2020.11.11 |
🎞 Animation (0) | 2020.11.11 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 생활코딩
- 프론트엔드
- 공공데이터
- CORS
- JavaScript
- 리액트
- INPUT
- postman
- vue
- vue예제
- 노드JS
- vue3
- inline
- nodejs
- axios
- 개발자회고
- function
- 공공데이터포털
- cssom
- react
- VanillaJS
- 오물오물
- CSS
- node.js
- HTML
- 프론트엔드회고
- baegofda
- font-family
- 프론트엔드면접
- vue입문
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함