hover&flip 카드 수평 가로 배치

haru·2022년 11월 16일
0

div로 만든 카드 기본 원형 리스트를 수평 배치 하고
마우스 호버 하면 카드 뒷장을 보여주는 css입니다.

 .outline {
        display: inline-block;
        display: flex;
        justify-content: space-around;
        margin-top: 130px;
        width:1000px;
    }

    .cardsbox {
        background-color: transparent;
        width: 170px;
        height: 300px;
        perspective: 1000px;
        margin: auto;
    }

    .cards {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    }


    .cardsbox:hover .cards {
        transform: rotateY(180deg);
    }

    .front, .back {
        position: absolute;
        width: 100%;
        height: 100%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .front {
        background-color: #bbb;
        color: black;
    }

    .back {
        background-color: #2980b9;
        color: white;
        transform: rotateY(180deg);

    }
<div class="cardsbox">
    <div class="cards">
        <div class="front">
            <img src="/경로" alt="selfimage">
            <p>이름</p>
        </div>
        <div class="back">
            <p>자기소개</p>
        </div>
    </div>
</div>

마우스 호버 전 과 후 입니다.

0개의 댓글