Jquery plugins Anystretch jQuery插件和图像交叉褪色?

Jquery plugins Anystretch jQuery插件和图像交叉褪色?,jquery-plugins,image-rotation,Jquery Plugins,Image Rotation,我正在使用anystretchjquery插件用旋转图像填充区域。首先,介绍图像淡入,然后旋转开始。我使用加载到数组中的图像,然后随机选择: $('body.home div.home-slider').anystretch(sliderImages[0], {speed: 250}); setTimeout(function(){ setInterval(function(){ var chooseNewImage = Math.floor(Math.random()

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

$('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);
我希望通过旋转使图像穿过淡入淡出/过渡。这可能吗?有人能帮忙解决这个问题吗