var index=1;
$(".car").click(function(){
if(index%2==1){
$(this).animate({top:"500px"},600)
index++;
}
else{
$(this).animate({top:"0px"},600)
index++;
}
})
可來回點擊,反復(fù)運動
$(".car").click(function(){
if(index%2==1){
$(this).animate({top:"500px"},600)
index++;
}
else{
$(this).animate({top:"0px"},600)
index++;
}
})
可來回點擊,反復(fù)運動
2017-01-12