在周期幻灯片中有第一张图片fadein?

时间:2011-08-09 20:26:27

标签: jquery cycle

我正试图让我的第一张jQuery循环幻灯片图片淡入淡出:Slide Show test

我正在使用的代码是:

$(document).ready(function() {
   $('#slideshow img:first').fadeIn(20000, function() {
              $('#slideshow').cycle({
                 fx: 'fadeZoom', 
                 timeout: 8000,
                 speed:  6000,
              });
   });
}); 

不幸的是它没有用。我错过了什么?我犯了什么错误?任何帮助,指导或代码片段都将不胜感激。

谢谢, PChuprina

2 个答案:

答案 0 :(得分:0)

您是否尝试过以下操作?

$(document).ready(function() {
   $('#slideshow img:first').fadeOut(0);
   $('#slideshow img:first').fadeIn(20000, function() {
              $('#slideshow').cycle({
                 fx: 'fadeZoom', 
                 timeout: 8000,
                 speed:  6000,
              });
   });
}); 

答案 1 :(得分:0)

你正在淡化图像,但你应该在div中消失。

所以将img更改为div