我想知道我怎麼能徘徊在使用這個例子http://www.designchemical.com/lab/jquery/demo/jquery_demo_image_swap_gallery.htm如何添加淡入淡出效果這個jQuery圖片交換庫
我在想,如果能夠實現這樣的www.bungie添加淡入效果。淨
下面是在例如
$(document).ready(function() {
// Image swap on hover
$("#gallery li img").hover(function(){
$('#main-img').attr('src',$(this).attr('src').replace('thumb/', ''));
});
// Image preload
var imgSwap = [];
$("#gallery li img").each(function(){
imgUrl = this.src.replace('thumb/', '');
imgSwap.push(imgUrl);
});
$(imgSwap).preload();
});
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
}
嘿謝謝你的幫助,但是當我懸停代碼提供的所有拇指開始消失。讓我看看我是否可以在jsFiddle中複製行爲 – user2016307