animate語法:
$(selector). speed,easing,callback)
$('.wrap div').stop(true,true); // 停止所有動畫,去的路程中點擊停止會直接到達終點,若是返回過程中再點擊,會停止到在起點
})
// .stop() // 停止目前動畫
// .stop( true) // 停止所有動畫
// .stop(true,true) // 停止所有動畫,到達動畫終點 .stop(); // 停止目前動畫,沿路返回起點,若是返回過程中再點擊,會暫停在路中.stop(true); // 停止所有動畫去的路程中點擊停止會直接到達終點,若是返回過程中再點擊,會暫停在路中.stop(true,true); // 停止所有動畫,去的路程中點擊停止會直接到達終點,若是返回過程中再點擊,會停止到在起點