关闭Lightbox后,模态窗口覆盖仍然存在

时间:2013-02-12 11:24:33

标签: javascript html popup hide

我有一个弹出窗口的主页面(请参阅我添加的图片中的窗口编号1)。在此弹出窗口中,有一个skip按钮。如果用户按下skip按钮,则弹出窗口消失(然后,用户看到主页面)(窗口编号3)。 如果用户没有按下弹出窗口,而是主窗口,主窗口的颜色变为灰色(窗口编号2)。如果我按主窗口约3次,那么颜色将变为白色(窗口编号3)。

enter image description here

如果用户按下主窗口而不是弹出窗口,我想我必须隐藏弹出窗口。

我该如何解决?

我的弹出窗口叫做class="popup_window"。调用XSKIP按钮:btn_xbtn_skip

任何帮助表示赞赏!

UPDATE 这是我的welcome_msg java脚本代码:

// welcome message
$("#welcome_dialog").lightbox_me({
 centered: true,
 onLoad: function() {
    //alert("Page is loaded");
}
});

1 个答案:

答案 0 :(得分:1)

我刚看了一下lightbox_me插件网站,在主页上列出了可以使用的选项。您需要在代码中添加以下内容:“closeClick:true”。

所以上面发布的代码看起来像这样:

$("#welcome_dialog").lightbox_me({
  centered: true,
  closeClick: true,
  onLoad: function() {
  //alert("Page is loaded");
 }
 });

如网站所述:

CloseClick  true    Whether or not to close the lightbox with the user clicks the overlay.

来源:http://buckwilson.me/lightboxme/