div { margin:3px; width:40px; height:40px;
position:absolute; left:0px; top:30px;
background:green; display:none; }
div.newcolor { background:blue; }
<script type="text/javascript" src="/js/jquery.js"></script>
<button id="start">开始</button>
<button id="stop">停止</button>
$("#start").click(function () {
$("div").animate({left:'+=200'},5000);
$("div").queue(function () {
$(this).addClass("newcolor");
$("div").animate({left:'-=200'},1500);
$("div").queue(function () {
$(this).removeClass("newcolor");
$("#stop").click(function () {