Modal POPUP的CSS溢出问题& AdSense的

时间:2014-12-19 01:51:24

标签: css popup modal-dialog overlay adsense

我使用OUIBounce(https://github.com/carlsednaoui/ouibounce)退出弹出窗口。

当它触发时,如果弹出窗口下有AdSense广告单元,则AdSense 100%可见,而网站的其余部分则显示为灰色。

请帮我解决这个问题。

这是底层CSS

width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0,0,0,0.5);
cursor: pointer;
-webkit-animation: fadein 0.5s;
animation: fadein 0.5s;

截图:

请注意,所有内容都是灰色的,而AdSense单元是可见的。

enter image description here

1 个答案:

答案 0 :(得分:0)

在用于触发模态的脚本中,添加一个回调函数(在cookieExpire:10之后):

callback: function() { 
 $("#ouibounce-modal").css({"z-index": "100"});
}