我正在使用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)'
}
}