📅  最后修改于: 2022-03-11 14:47:40.007000             🧑  作者: Mango
/* css animation does not support display none,
one hack is to just set height:0px;width:0px; on the animation*/
@keyframes JumpOut {
0% { top:10px; }
100% { top:-1020px; height:0px;width:0px;}
}