求教css3 animation问题

DOM结构

`    <div class="wrap">
        <div class="content"></div>
    </div>`

CSS样式及动画

.wrap{    position: relative;    width: 100px;    height: 400px;    background: blue;

}.content{    position: absolute;    width: 90px;    height: 200px;    background: red;    top: 0px;          -moz-animation:toTop 2s;                      -webkit-animation:toTop 2s;                      -o-animation:toTop 2s;
}
    @keyframes toTop{
         0%{top:0px;},
         100%{top: 87px}
      }

为什么动画不运行?什么原因造成的啊


智慧大石
浏览 529回答 1
1回答

繁星coding

@keyframes&nbsp;toTop{ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0%{top:0px;} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;100%{top:&nbsp;87px} }关键帧之间不用逗号
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript