0

我们继承了一个在 IE8 中根本无法运行的网站(它会加载一个空白页面)。我们纠正了许多问题,但仍有一些问题仍然存在,主要是主页右侧的特色产品选项卡在 IE8 中无法正常工作。它使用 Fancybox 1.3.4。

这是页面上的原始代码:

<script type="text/javascript">
    $("div.tab").toggle(function(){
        $(this).animate({
            'marginRight': '230px'
        },800);
        $(this).removeClass("unselected");
        $(this).addClass("selected");
        $("div.featured_product").delay(800).fadeIn(800);
    },
    function(){
        $("div.featured_product").fadeOut(800);
            $(this).animate({
                'marginRight': '-70px'
            },800);
            $(this).removeClass("selected");
            $(this).addClass("unselected");
    });     
    $("a#single_image").fancybox();
</script>
4

1 回答 1

0

fancybox 正在工作,您遇到的问题与 css IE 过滤器有关

progid:DXImageTransform.Microsoft.BasicImage(rotation=3)

尝试删除它并将按钮更改为图像而不是旋转它(它在 IE 9 中也不起作用)

于 2013-09-18T14:58:08.610 回答