0
A
回答
3
兩件事情,第一fadeIn()
只能運行在隱藏的元素,所以你需要開始隱藏自己的圖像,第二你需要在動畫下一張圖像之前等待動畫完成。此代碼應爲你工作,我刪除了間隔和計數變量:
var $slideshowImgs = $('.slideshow img').hide();
(function fadeSlideshow ($img){
var $next = $img.next();
if(!$next.length)
$next = $slideshowImgs.first();
$img.delay(2000).fadeOut(function(){
$next.fadeIn();
fadeSlideshow($next);
});
})($slideshowImgs.first().show());
0
相關問題
- 1. jQuery的淡入淡出和不工作
- 2. jquery淡入淡出效果
- 3. jquery淡入淡出效果不能在FF中工作
- 4. jQuery的淡入和淡出效果
- 5. JQuery的淡出,然後淡入工作,但閃爍效果
- 6. 淡入和淡出效果與jQuery
- 7. jQuery的淡入淡出 - 掙扎着爬一個jquery淡入淡出效果的工作
- 8. 在jquery中淡入淡出效果
- 9. 淡入淡出效果的onclick(jQuery的)
- 10. 與淡入淡出效果
- 11. jQuery的淡入淡出效果,
- 12. JQuery的添加淡入淡出效果
- 13. 淡入淡出不工作jquery
- 14. jQuery JSON淡入淡出 - 不工作?
- 15. 橫幅淡入淡出jquery不工作
- 16. JQuery淡入淡出效果在IE中不起作用
- 17. 淡入淡出不工作
- 18. 滑動和淡入淡出效果
- 19. asp.net&jquery淡入淡出效果
- 20. jQuery圖片淡入淡出效果
- 21. Javascript/jquery淡入淡出效果衰退
- 22. jquery ajax成功淡入淡出效果
- 23. jQuery淡入淡出效果取代div
- 24. jquery onclick淡入淡出效果
- 25. MooTools淡入淡出效果
- 26. CSS3 - 淡入淡出效果
- 27. 淡入淡出效果
- 28. 淡入淡出效果
- 29. jquery淡入淡出效果不起作用
- 30. jquery淡入淡出效果不起作用
沒有鏈接擺弄:( –
你給我們有相當大的挑戰 - 找到你的非參考jsfiddle! – ColinE
http://jsfiddle.net/he4an/ – rubyist