편집 요약 없음 |
편집 요약 없음 |
||
(같은 사용자의 중간 판 6개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
.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 { | .main-window { | ||
position: fixed; | position: fixed; | ||
10번째 줄: | 24번째 줄: | ||
display: table; | display: table; | ||
animation-name: window-fade-out; | animation-name: window-fade-out; | ||
animation-delay: | animation-delay: 1s; | ||
animation-duration: | animation-duration: 3s; | ||
animation-iteration-count: 1; | animation-iteration-count: 1; | ||
animation-fill-mode: forwards; | animation-fill-mode: forwards; | ||
27번째 줄: | 41번째 줄: | ||
margin: -150px 0 0 -150px; | margin: -150px 0 0 -150px; | ||
} | } | ||
. | .LDbar { | ||
animation: | animation: LDbar; | ||
animation-iteration-count: 1; | animation-iteration-count: 1.5; | ||
animation-fill-mode: forwards; | animation-fill-mode: forwards; | ||
animation-timing-function: ease; | animation-timing-function: ease; | ||
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 { |
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;
}
}