如何自定义此脚本以显示另一个图像?

时间:2011-07-19 20:20:35

标签: jquery html fadein

我有一个交叉淡化图像的脚本。但是我有一些文字图像,我想在每张图像上显示为淡入淡出。这意味着,当第一张图像出现时,它会暂停,然后文本图像将淡入图像然后淡出。之后,第二张图片淡入。

function slideSwitch() {
var $active = $('#slideshow IMG.active');

if ( $active.length == 0 ) $active = $('#slideshow IMG:last');

// use this to pull the images in the order they appear in the markup
var $next =  $active.next().length ? $active.next()
    : $('#slideshow IMG:first');

// uncomment the 3 lines below to pull the images in random order

// var $sibs  = $active.siblings();
// var rndNum = Math.floor(Math.random() * $sibs.length );
// var $next  = $( $sibs[ rndNum ] );


$active.addClass('last-active');

$next.css({opacity: 0.0})
    .addClass('active')
    .animate({opacity: 1.0}, 1500, function() {
        $active.removeClass('active last-active');
    });
}

$(function() {
setInterval( "slideSwitch()", 5000 );

});

1 个答案:

答案 0 :(得分:1)

只需在回调中执行文本图片淡入操作即可为下一张幻灯片设置动画:

$next.css({opacity: 0.0})
    .addClass('active')
    .animate({opacity: 1.0}, 1500, function() {
        // Fade in/out text image here
        $active.removeClass('active last-active');
    });
}