편집 요약 없음 |
편집 요약 없음 |
||
34번째 줄: | 34번째 줄: | ||
} | } | ||
. | @keyframes box-ani { | ||
from { | |||
transform: scale(1, 0); | |||
} | |||
to { | |||
transform: scale(1, 3); | |||
} | |||
} | |||
.box { | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
width: 100% | |||
} | } |
2023년 5월 20일 (토) 21:12 판
.losiacard {
display: inline-block;
overflow: hidden;
width: 190px;
height: 280px;
border-radius: 5px;
transform: scale(0.90);
transition: .2s ease-out;
}
.losiacard:hover{
transition: .2s ease-in;
transform: scale(0.995);
z-index:3;
margin-left: auto;
margin-right: auto;
}
.losiacard img {
display: inline-block;
overflow: hidden;
width: 190px;
height: 280px;
border-radius: 5px;
transform: scale(0.90);
transition: .2s ease-out;
}
.rotate{
transition: transform 2s;
}
.rotate:active{
transform: rotate(70deg);
}
@keyframes box-ani {
from {
transform: scale(1, 0);
}
to {
transform: scale(1, 3);
}
}
.box {
display: flex;
align-items: center;
justify-content: center;
width: 100%
}