Css3アニメーションを作成し、1回だけ実行されます。アニメーションはうまく機能しますが、アニメーションが終了するとリセットされます。どうすればこれを回避できますか、リセットするのではなく、結果を保持したいです。
$(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>
デモ です。
animation-fill-mode: forwards;
を追加
.go
へ
アニメーションの最後のキーフレームは、アニメーションの最後の反復が完了した後も引き続き適用されます。
次のスタイルをスタイルシートに追加します。
.go {
/* Already exists */
-webkit-animation: spinAndZoom 1s 1;
/*New content */
-webkit-animation-fill-mode: forwards;
}