jQzoom IE9 Bug - Error

2019-04-15 17:03发布

I have a problem with the following page.

http://nortlander.dk/frankrig/avoriaz/pistekort/

I have installed the jQzoom plugin, and everything works fine in all other browsers than IE9, are there any know bugs, issues or errors that somone is not telling me about :)

All help would be apriciated. Thanks

3条回答
祖国的老花朵
2楼-- · 2019-04-15 17:28

jqZoom was not working for me in IE8, So I fixed the problem as follows: In Stage class => this.append function, there is a variable 'thickness' which is defined inside a condition. I defined it outside the condition and now its working fine for me.

            var thickness = 1;
            if (settings.zoomType == 'innerzoom') {
                this.node.css({
                    cursor: 'default'
                });
                thickness = (smallimage.bleft == 0) ? 1 : smallimage.bleft;
                $('.zoomWrapper', this.node).css({
                    borderWidth: thickness + 'px'
                });    
            }
查看更多
小情绪 Triste *
3楼-- · 2019-04-15 17:28

I replaced jQzoom on big online store with cloud zoom. Everything seems to work fine and a little bit smoother now. Maybe you'll like it too: http://www.professorcloud.com/mainsite/cloud-zoom.htm

查看更多
做个烂人
4楼-- · 2019-04-15 17:38

i have the same issue. what i did is the following.

    if (img[0].complete || $.browser.msie) {
        //fetching data from sallimage if was previously loaded
        smallimage.fetchdata();
        if ($(".zoomPad", el).length == 0) obj.create();
    }

it works now.

查看更多
登录 后发表回答