#div {
position: absolute; top: 50px;
width: 100px; height: 100px; background: blue;
-webkit-animation-name: shift;
-webkit-animation-duration: 10s;
-webkit-animation-iteration-count: 2;
-webkit-animation-direction: reverse;
}
@-webkit-keyframes shift{
from{
top: 50px;
left: 0px;
}
20% {
top: 150px;
left: 100px;
}
to {
top: 400px;
left: 300px;
}
}
http://jsfiddle.net/uVv65/2/ なぜ逆アニメーション方向が通常と同じですか?私はそれがあまりにもこれを実行する別の方法がありますCSS-アニメーション/アニメーション方向/逆
top: 50px;
left: 0px;