편집 요약 없음 |
편집 요약 없음 |
||
(다른 사용자 한 명의 중간 판 44개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
/* 사용자 문서 메뉴 */ | |||
.losiacard { | .losiacard { | ||
display: inline-block; | display: inline-block; | ||
23번째 줄: | 24번째 줄: | ||
height: 280px; | height: 280px; | ||
border-radius: 5px; | border-radius: 5px; | ||
transform: scale(0. | transform: scale(0.95); | ||
transition: .2s ease-out; | transition: .2s ease-out; | ||
} | } | ||
/* 돌아가라 1 */ | |||
.rotate{ | .rotate{ | ||
transition: transform | transition: transform 1.5s; | ||
} | } | ||
.rotate:active{ | .rotate:active{ | ||
transform: rotate( | transform: rotate(90deg); | ||
} | |||
/* 앨범 겨울봄 */ | |||
.album { | |||
animation-duration: 40s; | |||
animation-name: slidein2; | |||
animation-timing-function: linear; | |||
animation-fill-mode: forwards; | |||
animation-iteration-count: 4; | |||
} | |||
@keyframes slidein2 { | |||
from { | |||
transform: rotate(0deg); | |||
} | |||
to { | |||
transform: rotate(360deg); | |||
} | |||
} | |||
/* 앨범재생 겨울봄 */ | |||
.albumcircle { | |||
animation-duration: 242s; | |||
animation-name: slidein; | |||
animation-timing-function: linear; | |||
animation-fill-mode: forwards; | |||
} | } | ||
@keyframes slidein { | |||
from { | |||
margin-left: 0px; | |||
} | |||
to { | |||
margin-left: 780px; | |||
} | |||
} | } | ||
. | |||
/* 앨범 리와인드 */ | |||
.album2 { | |||
animation-duration: 30s; | |||
animation-name: slidein4; | |||
animation-timing-function: linear; | |||
animation-fill-mode: forwards; | |||
animation-iteration-count: 9; | |||
} | |||
@keyframes slidein4 { | |||
from { | |||
transform: rotate(0deg); | |||
} | |||
to { | |||
transform: rotate(360deg); | |||
} | |||
} | |||
/* 앨범재생 리와인드 */ | |||
.albumcircle2 { | |||
animation-duration: 271s; | |||
animation-name: slidein3; | |||
animation-timing-function: linear; | |||
animation-fill-mode: forwards; | |||
} | |||
@keyframes slidein3 { | |||
from { | |||
margin-left: 0px; | |||
} | |||
to { | |||
margin-left: 780px; | |||
} | |||
} | } |
2023년 7월 10일 (월) 15:56 기준 최신판
/* 사용자 문서 메뉴 */
.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.95);
transition: .2s ease-out;
}
/* 돌아가라 1 */
.rotate{
transition: transform 1.5s;
}
.rotate:active{
transform: rotate(90deg);
}
/* 앨범 겨울봄 */
.album {
animation-duration: 40s;
animation-name: slidein2;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-iteration-count: 4;
}
@keyframes slidein2 {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* 앨범재생 겨울봄 */
.albumcircle {
animation-duration: 242s;
animation-name: slidein;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
@keyframes slidein {
from {
margin-left: 0px;
}
to {
margin-left: 780px;
}
}
/* 앨범 리와인드 */
.album2 {
animation-duration: 30s;
animation-name: slidein4;
animation-timing-function: linear;
animation-fill-mode: forwards;
animation-iteration-count: 9;
}
@keyframes slidein4 {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* 앨범재생 리와인드 */
.albumcircle2 {
animation-duration: 271s;
animation-name: slidein3;
animation-timing-function: linear;
animation-fill-mode: forwards;
}
@keyframes slidein3 {
from {
margin-left: 0px;
}
to {
margin-left: 780px;
}
}