[CSS]transform 3D 효과를 주는 perspective

홍싸리·2023년 5월 9일
0

css

목록 보기
2/4

html

<section>
  <article></article>
<section>

css

section{
	width:200px;
    height:200px;
    border:1px solid #000;
    perspective:200px;
    /* perspective 속성에 넣은 값이 클수록 왜곡이 심해짐 */

부모요소에 perspective 속성을 주지 않았을 경우

부모요소에 perspective 속성을 주었을 경우

perspective 속성을 준 상태에서 자식 요소에 transform: translateZ() 속성을 주면 거리감이 생긴다(원근법)

transform: translateZ(100px);

profile
그럴싸한건 다 따라해보는 프론트엔드 개발자 준비중인 6년차 퍼블리셔

0개의 댓글