Anystretch jQuery插件和图像交叉淡入淡出?

时间:2013-06-04 21:08:32

标签: jquery-plugins image-rotation

我正在使用Anystretch jQuery插件来填充<div>的旋转图像区域。首先,介绍图像淡入,然后旋转开始。我正在使用加载到数组中的图像,然后随机选择:

$('body.home div.home-slider').anystretch(sliderImages[0], {speed: 250});
setTimeout(function(){
    setInterval(function(){
        var chooseNewImage = Math.floor(Math.random() * 4);
        $('body.home div.home-slider').anystretch(sliderImages[chooseNewImage]);
    }, 2500);
}, 3000);

旋转时我想要的是图像交叉渐变/过渡。这可能吗?有人可以帮忙解决这个问题吗?

0 个答案:

没有答案