1

我正在使用以下动画:

.wheel1anim {
    -webkit-animation-name: wheel1go;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes wheel1go {
    0% {
    }
    100% {
        -webkit-transform: translate(200px, 150px);
    }
}

动画效果很好,但是一旦动画完成,元素就会从动画位置移动到默认位置

有没有办法让它留在原地?

4

1 回答 1

2

您可以在 .wheel1anim 中添加一行:

-webkit-animation-fill-mode:both;
于 2012-06-14T01:04:32.597 回答