84

我写了一个 css3 动画,它只执行一次。动画效果很好,但动画完成后会重置。我怎样才能避免这种情况,我想保留结果而不是重置它。

$(function() {
  $("#fdiv").delay(1000).addClass("go");
});
#fdiv {
  width: 10px;
  height: 10px;
  position: absolute;
  margin-left: -5px;
  margin-top: -5px;
  left: 50%;
  top: 50%;
  background-color: red;
}

.go {
  -webkit-animation: spinAndZoom 1s 1;
}

@-webkit-keyframes spinAndZoom {
  0% {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    -webkit-transform: rotateZ(360deg);
  }
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

<div id="fdiv"></div>

这是演示

4

3 回答 3

146

添加animation-fill-mode: forwards;

给你的.go

在动画的最终迭代完成后,动画的最终关键帧将继续应用。

http://css-infos.net/property/-webkit-animation-fill-mode

于 2013-06-25T12:14:07.133 回答
5

将以下样式添加到您的样式表中:

.go {
     /* Already exists */
     -webkit-animation: spinAndZoom 1s 1;

     /*New content */
     -webkit-animation-fill-mode: forwards;
 }
于 2013-06-25T12:15:05.330 回答
2

添加动画填充模式:转发;

.go {
     -webkit-animation-fill-mode: forwards;
 }
于 2013-06-25T12:42:46.913 回答