【发布时间】:2015-08-18 22:08:46
【问题描述】:
我正在尝试播放我想在最后一帧停止的角色跳跃动画,但它并没有停止。我尝试使用
动画填充模式:转发;
没有结果。
下面是我正在使用的代码
.kia-jump {
width: 320px;
height: 464px;
position: absolute;
top: 1%;
left: 41%;
background: url('../images/activity/KiaJumpingAnimation.png') left center;
animation-fill-mode: forwards;
animation: jumpAnim 1.67s steps(24) 1;
}
@keyframes jumpAnim {
100% { background-position: -7920px; }
}
这是 JSFiddle 的链接 -> https://jsfiddle.net/k4rz5tdy/
【问题讨论】:
-
全部放在动画上: jumpAnim 1.67s steps(24) 1 forwards
-
@PaoloCargnin:我认为你是对的。动画是一种速记,因此之前的设置很有可能被覆盖。
-
@PaoloCargnin 没用 :(