我对以下语法/代码不起作用(不再)是对的吗?
$(".fancybox").fancybox({
helpers : {
overlay : {
opacity : 0.9,
css : {
'background-color' : '#f00'
}
}
}
});
看看:http: //jsfiddle.net/jRsjK/3375/
……但只有这个?
$(".fancybox").fancybox({
helpers : {
overlay : {
css : {
'background-color' : 'rgba(255, 0, 0, .9)'
}
}
}
});
看看:http: //jsfiddle.net/jRsjK/3374/