IT 블로그

CSS Hover 애니메이션 1,2,3 소스 정리 본문

프로그래밍/css

CSS Hover 애니메이션 1,2,3 소스 정리

wmsttks 2018. 10. 2. 21:15
CSS Hover 애니메이션 - 1,2,3 코드 모음



전에 작성한 CSS Hover 애니메이션 1,2,3편의
소스 코드만 정리 해두었습니다.



CSS Hover 애니메이션 - 1



결과물



Html
1
2
3
4
<div class="image-box">
    <div class="content">
    </div>
</div>



Css
길어서 2개로 분리 하였다.
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
31
32
33
34
35
36
37
38
39
40
41
42
.image-box {
    width: 200px;
    height: 200px;
    padding: 20px;
    background: skyblue;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.image-box::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
}
.image-box .content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background: none;
}
.image-box .content::after,
.image-box .content::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    border-color: white;
    border-width: 1px;
    transition: .5s;
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.image-box .content::after {
    height: 100%;
    border-style: solid none;
}
.image-box .content::before {
    width: 100%;
    border-style: none solid;
}
.image-box:hover::after {
    opacity: 1;
}
.image-box:hover .content::after,
.image-box:hover .content::before {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}



CSS Hover 애니메이션 - 2



결과물
앞면
뒷면



Html
1
2
3
4
5
6
<div class="flip-box">
    <div class="flip">
        <div class="front">앞면</div>
        <div class="back">뒷면</div>
    </div>
</div>



Css
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
31
32
.flip-box {
    width: 300px;
    height: 400px;
    perspective: 1000px;
}
.flip-box:hover .flip {
    transform: rotateY(-180deg);
}
.flip {
    width: 100%;
    height: 100%;
    position: relative;
    color: white;
    text-align: center;
    line-height: 400px;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: .5s;
}
.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}
.front {
    background: skyblue;
}
.back {
    background: orange;
    transform: rotateY(180deg);
}






CSS Hover 애니메이션 - 3



결과물
CLOSE



Html
1
2
3
4
5
<div class="content">
    <div class="close">
        <div>CLOSE</div>
    </div>
</div>



Css

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.content {
    width: 150px;
    height: 150px;
    position: relative;
    box-sizing: border-box;
    background: #141926;
}
.close {
    width: 80px;
    height: 50px;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.close::before,
.close::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: .3s ease-in;
}
.close::before {
    top: 50%;
    transform: rotate(45deg);
}
.close::after {
    bottom: 50%;
    transform: rotate(-45deg);
}
.close:hover::before{
    top: 0;
    transform: rotate(0deg);
}
.close:hover::after{
    bottom: 0;
    transform: rotate(0deg);
}
.close div {
    font-size: 14px;
    color: white;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    transition: .3s;
    color: white;
    text-decoration: none;
}
.close:hover div {
    opacity: 1;
}



- 끝 -


'프로그래밍 > css' 카테고리의 다른 글

CSS 로딩 애니메이션 예제 - 2~3  (0) 2018.10.03
CSS 로딩 애니메이션 예제 - 1  (0) 2018.10.03
CSS Hover 애니메이션 - 3  (0) 2018.10.02
CSS Hover Flip 애니메이션 - 2  (0) 2018.10.02
CSS Hover 애니메이션 - 1  (0) 2018.10.02