2015-05-19 232 views
0

我有關於幻燈片的問題。有沒有什麼辦法可以看到圖像淡入淡出......交叉淡入淡出圖片淡入淡出匹配圖片

Here是一個小提琴。

function cycleImages(){ 

     var $active = $('#cycler .active'); 
     var $next = ($active.next().length > 0) ? $active.next() : $('#cycler img:first'); 
     $next.css('z-index',2);//move the next image up the pile 
     $active.fadeOut(1500,function(){//fade out the top image 
      $active.css('z-index',1).show().removeClass('active');//reset the z-index and unhide the image 
      $next.css('z-index',3).addClass('active');//make the next image the top one 
     }); 
    } 

$(document).ready(function(){ 
// run every 4s 
setInterval('cycleImages()', 4000); 
}) 
+0

http://jsfiddle.net/webdevpao22/gn8c7sb7/ –

+0

匹配圖片,你的意思是相同的? – Tasos

+0

是的..相同的圖像,但我不能看到它淡入淡出..你能幫我嗎? –

回答

0

你有一個開始,我想你可以,一旦你改變這種弄明白:

setInterval('cycleImages()', 4000); 

這樣:

setInterval(function(){cycleImages()}, 4000); 

然後從那裏解決您的代碼。

+0

仍然無法正常工作..你能給我一個這樣的小提琴嗎? http://jsfiddle.net/webdevpao22/gn8c7sb7/3/ –

+0

您正在使用jQuery,因此您必須將其引入。在頂部的左欄中,它表示框架和擴展,點擊下拉菜單中的「否-Library(Pure JS)「,從下拉菜單中選擇jQuery 2.1.0 – MichaelG

+0

謝謝。像魅力一樣工作。我仍然是堆棧溢出的新手。再次謝謝.. –