裁剪图像在IE中无法正常工作

时间:2014-06-30 08:27:23

标签: jquery internet-explorer

enter image description here我正在使用crop.js在我的应用程序中裁剪图像,但其滑块在IE中不起作用。 我无法调整图像大小。

这是在js

中调整大小的代码
this.imgResize = function (scale) {

        var img = this.eles.img,
            imgInfo = this.imgInfo,
            oldScale = imgInfo.s;

        imgInfo.s = scale || imgInfo.s;

        img.css({
            width: imgInfo.w * imgInfo.s,
            height: imgInfo.h * imgInfo.s
        });

        // Move Image Based on Size Changes
        this.imgMove({
            t: -((imgInfo.h * oldScale) - (imgInfo.h * imgInfo.s)) / 2,
            l: -((imgInfo.w * oldScale) - (imgInfo.w * imgInfo.s)) / 2
        });
    };

1 个答案:

答案 0 :(得分:-1)

Internet Explorer不是做jquery的最佳浏览器。 IE没有正确的插件或编解码器来执行此类代码。我建议使用其中一种:

获取这些浏览器的最新版本:

Google Chrome(版本35.0.1916.153 m)

Mozilla Firefox(版本30.0)

谢谢,

阿尔伯特