通过点击其外的任何其他位置关闭模态

时间:2017-11-04 16:16:22

标签: javascript css angularjs popup

我想通过点击其他任何地方来关闭模式,但我们并不真正知道如何将功能放在一起。理想情况下,我希望拥有纯JS或AngularJS解决方案。非常感谢任何有关此事的帮助。

Fiddle



.modalDialog {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 400px;
  position: relative;
  margin: 10% auto;
  padding: 5px 20px 13px 20px;
  border-radius: 10px;
  background: linear-gradient(#fff, #999);
}

.close {
  background: #606061;
  color: #fff;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 1px 1px 3px #000;
}

.close:hover {
  background: #00d9ff;
}

<a href="#openModal">Open Modal</a>
<div id="openModal" class="modalDialog">
  <div>
    <a href="#close" title="Close" class="close">X</a>
    <h2>Modal Box</h2>
    <p>This is a sample modal box that can be created using the powers of CSS3.</p>
    <p>You could do a lot of things here like have a pop-up ad that shows when your website loads, or create a login/register form for users.</p>
  </div>
</div>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

您可以通过向内部模态内容和外部div添加单击处理程序来实现角度。在内部div中,您需要使用$event.stopPropagation来停止事件传播,否则也会调用外部单击处理程序。然后,当调用outerDiv单击处理程序时,您可以使用angular的$location服务来关闭模态。参见随附的plunker:

https://plnkr.co/edit/a3b5fU9G6wuXLLhiyI2D

答案 1 :(得分:0)

我这样做的方式是这样的:

$('.wrapper').on('click', function(e) {
    var modal = $(this).find('.modal');
    if (!modal.is(e.target) && modal.has(e.target).length == 0) {
        modal.removeClass('opened');
    }
});

顺便说一下,当模态关闭而不是禁用指针事件时,最好将visibility属性设置为“hidden”。这样,用户也无法点击它。