(새 문서: .main-window { position: fixed; top: 0; right: 0; width: 100%; height: 100%; z-index: 999999; background: white; background: rgba(255, 255, 255, .5); display: table; animati...) |
편집 요약 없음 |
||
6번째 줄: | 6번째 줄: | ||
height: 100%; | height: 100%; | ||
z-index: 999999; | z-index: 999999; | ||
background: | background: #8a001b; | ||
background: rgba( | background: rgba(138, 0, 27, .5); | ||
display: table; | display: table; | ||
animation-name: window-fade-out; | animation-name: window-fade-out; |
2024년 2월 17일 (토) 09:04 판
.main-window {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 999999;
background: #8a001b;
background: rgba(138, 0, 27, .5);
display: table;
animation-name: window-fade-out;
animation-delay: .5s;
animation-duration: 4s;
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;
}
@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;
}
}