Could someone assist me in hiding this div-container for a brief period of 2 seconds?
If you have any alternative suggestions, feel free to share them but, please refrain from using jQuery or JavaScript.
#vcontainer {
height: 450px;
width: 100%;
background-color:black;
margin-top:10px;
margin-bottom:10px;
animation: vldng 4s;
-webkit-animation: vldng 4s;
display: none;
}
@keyframes vldng {
0%{display: none;}
50%{display: block;}
100%{display: block;}
}
@-webkit-keyframes vldng {
0%{display: none;}
50%{display: block;}
100%{display:block;}
}
Your assistance is greatly appreciated! :)