fancybox 2& IE8 - 没有背景覆盖

时间:2012-08-29 03:01:14

标签: fancybox-2

我正在使用fancybox 2并且背景覆盖[透明度]存在问题。 我的叠加助手看起来像:

overlay : {
        css : {
            'background' : 'rgba(42, 42, 42, 0.95)'
        }
    }

因为我的红色rgba与IE< -8

不兼容

-----解决方案----------

我找到了这个解决方案:

overlay : {
        css : {
    'background':'transparent',
            'filter':'progid:DXImageTransform.Microsoft.gradient
             (startColorstr=#F22a2a2a,endColorstr=#F22a2a2a)', 
            'zoom': '1',
            'background' : 'rgba(42, 42, 42, 0.95)'
        }
    }

0 个答案:

没有答案