【问题标题】:Closing the modal by clicking anywhere else outside of it通过单击其外部的任何其他位置来关闭模式
【发布时间】:2017-11-04 16:16:21
【问题描述】:

我想通过单击它之外的任何其他位置来关闭模式,但我真的不知道如何将这些功能组合在一起。理想情况下,我想要一个纯 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>

【问题讨论】:

    标签: javascript css angularjs popup


    【解决方案1】:

    您可以通过将点击处理程序添加到内部模态内容和外部 div 来以角度方式执行此操作。在内部 div 中,您需要使用 $event.stopPropagation 停止事件传播,否则也会调用外部点击处理程序。然后,当调用 outerDiv 点击处理程序时,您可以使用 Angular 的 $location 服务来关闭模态框。请参阅随附的插件:

    https://plnkr.co/edit/a3b5fU9G6wuXLLhiyI2D

    【讨论】:

    • 谢谢!,但为什么这不起作用?:/我的意思是模态不想打开。在 url 中是这样的:localhost:3000/#!#openModal 和 modal 不想打开自己
    【解决方案2】:

    我的做法是这样的:

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

    顺便说一句,当模式关闭而不是禁用指针事件时,最好将可见性属性设置为“隐藏”。这样用户也无法点击它。

    【讨论】:

      猜你喜欢
      • 2016-09-03
      • 1970-01-01
      • 2012-02-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多