我在CSS3页面加载时有一个延迟动画.一切正常,但动画完成后,DIV会重新进入visibility: hidden
.
.content-left {
margin-left: 100px;
margin-top: 32px;
position: absolute;
z-index: 1;
visibility: hidden;
-webkit-animation: fadein 1s 2s ease; /* Safari and Chrome */
animation: fadein 1s 2s ease;
}
@keyframes fadein {
from { height: 0px; }
to { height: 421px; visibility: visible;} }
@-webkit-keyframes fadein {
from { height: 0px; }
to { height: 421px; visibility: visible;}}
Run Code Online (Sandbox Code Playgroud)