css animation display none

Solutions on MaxInterview for css animation display none by the best coders in the world

showing results for - "css animation display none"
Caterina
08 Aug 2017
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}