1
在下面的代碼中,我試圖讓div在幻燈片上滑動,然後在鼠標離開後淡出。這樣做最簡單的方法是什麼?切換淡入幻燈片
$(window).load(function(){
$('div.description').each(function(){
$(this).css('opacity', 0);
$(this).css('width', $(this).siblings('img').width());
$(this).parent().css('width', $(this).siblings('img').width());
$(this).css('display', 'block');
});
$('div.wrapper').hover(function(){
$(this).children('.description').stop().fadeTo(700, 0.8);
},function(){
$(this).children('.description').stop().fadeTo(700, 0);
});
});