편집 요약 없음 |
편집 요약 없음 |
||
28번째 줄: | 28번째 줄: | ||
.rotate{ | .rotate{ | ||
margin: 12px 0; | |||
width: 50px; | |||
height: 50px; | |||
background: linear-gradient(red, blue); | |||
border-radius: 50%; | |||
transition: transform .2s; | |||
} | } | ||
.rotate img{ | |||
.rotate img { | transform: rotate(720deg); | ||
} | } | ||
.rotate:hover{ | .rotate:hover{ | ||
transform: rotate(720deg); | transform: rotate(720deg); | ||
} | } |
2023년 5월 20일 (토) 20:32 판
.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{
margin: 12px 0;
width: 50px;
height: 50px;
background: linear-gradient(red, blue);
border-radius: 50%;
transition: transform .2s;
}
.rotate img{
transform: rotate(720deg);
}
.rotate:hover{
transform: rotate(720deg);
}