使用collageplus插件时如何设置图像的原始大小

时间:2014-11-21 05:36:34

标签: javascript jquery

我正在使用 jQuery collagePlus插件v0.3.3 在div中显示图像。它工作正常但我的问题是,图像大小会增加并打破图像的原始效果。当我上传图像时它的显示如下,

enter image description here

当我使用代码时,

$('#clickAlignButton').click(function(){
     $('.divimages').collagePlus();
    });

图像显示如下,

enter image description here

我希望显示所有上传的图像与其原始效果水平对齐。

我尝试更改collageplus.js中的代码,例如

  $img.width(fw);
                if( !$obj.is("img") ){
                   // $obj.width(fw + obj[i][3]);
                    $obj.width("50px");
                }


                /*
                 *
                 * Set the height of the image
                 * if the resized element is not an image, we apply it to the child image also
                 *
                 */
                $img.height(fh);
                if( !$obj.is("img") ){
                    //$obj.height(fh + obj[i][4]);
                    $obj.height("70px");
                }

但没用!。

演示:http://jsfiddle.net/46psK/944/

如何解决这个问题?

0 个答案:

没有答案