我有關於幻燈片的問題。有沒有什麼辦法可以看到圖像淡入淡出......交叉淡入淡出圖片淡入淡出匹配圖片
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);
})
http://jsfiddle.net/webdevpao22/gn8c7sb7/ –
匹配圖片,你的意思是相同的? – Tasos
是的..相同的圖像,但我不能看到它淡入淡出..你能幫我嗎? –