這是我的代碼:的setTimeout不加延遲
function transition(index){
$("#right-panel").find("img").each(function(){
if ($(this).index() === index){
setTimeout(function(){
$(this).fadeIn(750);
}, 100000000);
}else{
$(this).fadeOut(750);
}
});
}
出於某種原因,在功能上的setTimeout不會導致對淡入延遲。我究竟做錯了什麼?
我寧可懷疑fadeIn沒有發生 - 請確認嗎? – Alnitak 2012-01-27 22:17:35
爲什麼延遲28小時?你嘗試過一個較小的(合理的)價值嗎? – 2012-01-27 22:17:49
考慮緩存這些圖像(以便您不必每次都查詢)。 – 2012-01-27 22:18:58