1/* css animation does not support display none,
2one hack is to just set height:0px;width:0px; on the animation*/
3@keyframes JumpOut {
4 0% { top:10px; }
5 100% { top:-1020px; height:0px;width:0px;}
6}