편집 요약 없음 |
편집 요약 없음 |
||
(다른 사용자 한 명의 중간 판 25개는 보이지 않습니다) | |||
24번째 줄: | 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 */ | /* 돌아가라 1 */ | ||
.rotate{ | .rotate{ | ||
transition: transform | transition: transform 1.5s; | ||
} | } | ||
.rotate:active{ | .rotate:active{ | ||
transform: rotate( | transform: rotate(90deg); | ||
} | } | ||
/* | /* 앨범 겨울봄 */ | ||
.album { | .album { | ||
animation-duration: 40s; | animation-duration: 40s; | ||
41번째 줄: | 41번째 줄: | ||
animation-timing-function: linear; | animation-timing-function: linear; | ||
animation-fill-mode: forwards; | animation-fill-mode: forwards; | ||
animation-iteration-count: 4; | |||
} | } | ||
@keyframes slidein2 { | @keyframes slidein2 { | ||
48번째 줄: | 49번째 줄: | ||
to { | to { | ||
transform: rotate( | transform: rotate(360deg); | ||
} | } | ||
} | } | ||
/* | /* 앨범재생 겨울봄 */ | ||
.albumcircle { | .albumcircle { | ||
animation-duration: | animation-duration: 242s; | ||
animation-name: slidein; | animation-name: slidein; | ||
animation-timing-function: linear; | animation-timing-function: linear; | ||
61번째 줄: | 62번째 줄: | ||
@keyframes slidein { | @keyframes slidein { | ||
from { | from { | ||
margin-left: | margin-left: 0px; | ||
} | } | ||
to { | to { | ||
margin-left: | 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;
}
}