我正在尝试使用 css 动画和关键帧使立方体出现在页面顶部。但他出现在动画的开头,只有在动画之后才出现。我如何让它从上面出现?
我想要加载页面,两秒钟后立方体出现了。
<div id="cube"></div>
cube{
position: relative;
left:60px;
width:100px;
height:200px;
background:red;
-webkit-animation-name: cube;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-delay: 2s;
-webkit-animation-duration: 0.8s;
}
@-webkit-keyframes cube {
0% {top: -200px;}
100% {top: 0;}
}
这是我的例子