[애니메이션] 앞뒤회전
html
<div class="wrapper">
<div class="item front">앞</div>
<div class="item back">뒤</div>
</div>
css
.wrapper {
position: relative;
width: min-content;
height: min-content;
perspective: 300px; /* 원근법 적용 */
}
.wrapper .item {
width: 100px;
height: 100px;
border: 4px solid red;
box-sizing: border-box;
font-size: 60px;
backface-visibility: hidden; /* 뒤집어진 요소 숨기기 */
transition: 1s;
}
.wrapper .item.front {
position: absolute;
transform: rotateY(0deg);
}
.wrapper:hover .item.front {
transform: rotateY(180deg);
}
.wrapper .item.back {
transform: rotateY(-180deg);
}
.wrapper:hover .item.back {
transform: rotateY(0deg);
}
Author And Source
이 문제에 관하여([애니메이션] 앞뒤회전), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tjdgus3160/애니메이션-앞뒤회전저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)