我想让Fancybox的背景颜色透明。
显而易见的方法是在你的CSS中使用“.fancybox-skin”,但这会影响所有的fancybox,我需要改变它。因此,需要使用wrapCSS发送设置。
Fancybox有一个参数“wrapCSS”,可以通过原始的js调用传入,但我不知道如何使用它。它只是说“字符串”:http://fancyapps.com/fancybox/#useful
我一直在努力传递像{wrapCSS: "background: red"}
这样的CSS,但它不起作用。
答案 0 :(得分:2)
使用wrapCSS添加一个类,然后在CSS中:
.whateverYouChooseforWrapCSS .fancybox-skin {
background: none;
}
答案 1 :(得分:0)
使用css for bg:
#fancy_bg
{
background-color:000000 !important;
}