我试图在JS和CSS上做得更好,所以我制作了一个虚假的iPhone,并尝试模拟文本气泡在屏幕上和屏幕外弹出的样子。 到目前为止This是它的样子,这是手机本身的HTML:
<div id="iPhone">
<div id="screen"></div>
<div id="me" class="bubble"></div>
<div id="homeButton" class="circle"></div>
</div>
以及样式表:
#iPhone {
position: fixed;
width: 250px;
height: 500px;
background-color: black;
border-radius: 25px;
top: 50%;
right: 30%;
transform: translate(-50%, -50%);
-webkit-filter: blur(3px);
box-shadow: 0 0 40px 20px white;
border: solid 2px white;
}
#me {
background-color: #1D62F0;
margin-top: 130%;
margin-left: 25%;
}
#me::after{
content: "";
position: absolute;
right: 0em;
bottom: 0;
width: 0.5em;
height: 1em;
border-left: 0.5em solid #1D62F0;
border-bottom-left-radius: 1em 0.5em;
}
#screen {
position: fixed;
width: 241px;
height: 370px;
background-color: white;
border-radius: 0px;
top: 8%;
left: 1%;
-webkit-filter: blur(3px);
border: solid 2px black;
}
现在,没有JS管理它。如何让它自然滑到&#34;屏幕上?#34; div然后从顶部消失,就像真正的短信一样?
谢谢!
答案 0 :(得分:0)
您需要将overflow: hidden
属性放在消息容器div上,然后只需在已存在的消息框下面按下新消息框,这样它们最终就会消失。