修复jquery图片裁剪插件CropZoom的BUG

插件地址http://www.helloweba.com/view-blog-51.html

 

BUG:

参数x,y设置后无效

 

修正方法:

源码154行和155行,原为

 

 

$($image).attr('x', 0);
$($image).attr('y', 0);

 

 这里写死了...所以参数传不进来,修改为

 

$($image).attr('x', $options.x);
$($image).attr('y', $options.y);

 OK搞定

 

你可能感兴趣的:(jquery,图片裁剪)