jquery动画大小图像 - 右图像不在屏幕外

时间:2014-10-06 05:57:57

标签: jquery jquery-animate

我使用jquery动画功能调整图像大小。我的问题是,从左到右,当图像靠近屏幕的右侧时,图像正在切割。

有什么建议吗?

我试着用顶部和右边玩,但直到现在都无法弄明白。

function resizeImages()
{
    $.fn.random = function() {
        return this.eq(Math.floor(Math.random() * this.length));
    }
    image= $(".Collage img").random();
    var positions = image.position();
    image.css('z-index',1000);
    image.css('position',"fixed");
    image.random().animate({height:"400px",width:"400px" },3000);
    image.random().animate({height:imageWidth,width:imageWidth},{ duration: 4000,  complete:function(){

        image.css('z-index',1);
        image.css('position',"relative");
        GetImages();

    }});

}

图像的默认大小是 感谢

0 个答案:

没有答案