Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css animation display none

/* 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;}                                                       
}   
 
PREVIOUS NEXT
Tagged: #css #animation #display
ADD COMMENT
Topic
Name
4+5 =