<br />div{ <br />width:100px; <br />height:100px; <br />background:red; <br />position:relative; <br />-webkit-animation:myfirst 5s ; <br />} <br />@-webkit-keyframes myfirst{ <br />0%{background:red; left:0;top:0; <br />} <br />50%{ background:skyblue; left:200px; top:100px;} <br />} <br />75%{ background:red; left:100px; top:50px;} <br />} <br />100%{ background:yellow; left:0; top:0;} <br />} <br /> 回复讨论(解决方案) 最后是红色不对吗 你多了两个 } <br />div{ <br />width:100px; <br />height:100px; <br />background:red; <br />position:relative; <br />-webkit-animation:myfirst 5s ; <br />} <br />@-webkit-keyframes myfirst{ <br />0%{background:red; left:0;top:0;} <br />50%{ background:skyblue; left:200px; top:100px;} <br />75%{ background:red; left:100px; top:50px;} <br />100%{ background:yellow; left:0; top:0;} <br />} <br />