편집 요약 없음 |
편집 요약 없음 |
||
25번째 줄: | 25번째 줄: | ||
animation-name: window-fade-out; | animation-name: window-fade-out; | ||
animation-delay: 1s; | animation-delay: 1s; | ||
animation-duration: | animation-duration: 3s; | ||
animation-iteration-count: 1; | animation-iteration-count: 1; | ||
animation-fill-mode: forwards; | animation-fill-mode: forwards; | ||
48번째 줄: | 48번째 줄: | ||
background-image:linear-gradient(to right, white 0.5%, transparent 0.5%); | background-image:linear-gradient(to right, white 0.5%, transparent 0.5%); | ||
box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5); | box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5); | ||
} | } | ||
@keyframes window-fade-out { | @keyframes window-fade-out { | ||
79번째 줄: | 65번째 줄: | ||
right: 999999999px; | right: 999999999px; | ||
} | } | ||
} | } |
2024년 2월 17일 (토) 11:00 기준 최신판
.BG1 {
position: fixed;
width: 100%;
height: 100vh;
background-repeat: repeat-y;
display: inherit;
justify-content: center;
align-items: center;
overflow: hidden;
z-index:-3;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.main-window {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 999999;
background: #8a001b;
background: rgba(138, 0, 27, 1);
display: table;
animation-name: window-fade-out;
animation-delay: 1s;
animation-duration: 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.main-window-text {
position: absolute;
width: 300px;
height: 300px;
}
.main-window-textbox {
text-align: center;
position: relative;
top: 50%;
left: 50%;
margin: -150px 0 0 -150px;
}
.LDbar {
animation: LDbar;
animation-iteration-count: 1.5;
animation-fill-mode: forwards;
animation-timing-function: ease;
background-image:linear-gradient(to right, white 0.5%, transparent 0.5%);
box-shadow:0px 0px 5px 1px rgba(0,0,0,0.5);
}
@keyframes window-fade-out {
0% {
opacity: 1;
top: 0;
right: 0;
}
25% {
opacity: 0;
top: 0;
right: 0;
}
100% {
opacity: 0;
top: 999999999px;
right: 999999999px;
}
}