편집 요약 없음 |
편집 요약 없음 |
||
33번째 줄: | 33번째 줄: | ||
.rotate:active{ | .rotate:active{ | ||
transform: rotate(70deg); | transform: rotate(70deg); | ||
} | |||
/* 돌아가라 2 */ | |||
.rotate2{ | |||
transition: transform 2s; | |||
} | |||
.rotate2:active{ | |||
transform: rotate(70deg); | |||
transform-origin:bottom | |||
} | } |
2023년 5월 22일 (월) 19:29 판
/* 사용자 문서 메뉴 */
.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;
}
/* 돌아가라 1 */
.rotate{
transition: transform 2s;
}
.rotate:active{
transform: rotate(70deg);
}
/* 돌아가라 2 */
.rotate2{
transition: transform 2s;
}
.rotate2:active{
transform: rotate(70deg);
transform-origin:bottom
}