issue #11 이미지 메시지 기능 지원.

This commit is contained in:
Paul Kim
2023-12-18 21:29:33 +09:00
parent e2803770d8
commit f95b5efe56
2 changed files with 84 additions and 31 deletions

View File

@@ -1954,6 +1954,23 @@
height: 100%;
}
.popup>.mypage.fade {
animation-delay: 1s;
animation-name: popup_mypage_fade;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-fill-mode: forwards;
animation-duration: 3s;
background-color:rgba(10, 10, 10, 0);
}
@keyframes popup_mypage_fade {
from {background-color:rgba(10, 10, 10, 0);}
to {background-color:rgba(10, 10, 10, 0.7);}
}
.popup>.mypage>.message {
position: absolute;
top: 13%;
@@ -1961,8 +1978,9 @@
width: 88%;
height: 80%;
background-color: rgb(64, 64, 64);
background-image: url(./images/bg_message_cream-paper.png);
box-shadow: 2px 3px 20px black, 0 0 200px rgb(16, 16, 16) inset;
/* background-image: url(./images/bg_message_cream-paper.png); */
/* box-shadow: 2px 3px 20px black, 0 0 200px rgb(16, 16, 16) inset; */
box-shadow: 0 0px 60px rgba(0, 0, 0, 0.65);
overflow: hidden;
display: none;
}