<h1>Wait 5 seconds for message to pop up from bottom</h1>
<div id="lead_form">testing</div>
#lead_form {
background:#000;
color:#fff;
background:rgba(0,0,0,0.7);
height:200px;
width:200px;
position: fixed;
bottom:-220px;
right:0;
animation:slideUp 15s;
animation-delay:5s;
z-index:-1;
padding:10px;
}
@keyframes slideUp {
0% {bottom:-220px;opacity:0}
25%{bottom:77px;z-index:1;opacity:1;}
75%{bottom:77px;z-index:1;opacity:1;}
100%{bottom:-220px;z-index:0;opacity:0;}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.