1

我正在使用带有 Angular2 的 Foundation 6,并且我有几个 Reveal 模态,需要按顺序打开。我直接从 Zurb 复制了示例,但是当我单击第一个模态中的按钮时,新模态打开并且第一个模态不会关闭。

multipleOpened 的默认值应该是 false,但它们只是在彼此之上打开。

截屏

我试过设置data-multiple-opened="false"和也data-options="multipleOpened:false;",但他们仍然在彼此之上打开。

这是我的代码:

<p><a data-open="exampleModal2">Click me for a modal</a></p>

<!-- This is the first modal -->
<div class="reveal" id="exampleModal2" data-reveal data-options="multipleOpened:false;">
  <h1>Awesome!</h1>
  <p class="lead">I have another modal inside of me!</p>
  <a class="button" data-open="exampleModal3">Click me for another modal!</a>
  <button class="close-button" data-close aria-label="Close reveal" type="button">
    <span aria-hidden="true">&times;</span>
  </button>
</div>

<!-- This is the nested modal -->
<div class="reveal" id="exampleModal3" data-reveal data-options="multipleOpened:false;">
  <h2>ANOTHER MODAL!!!</h2>
  <button class="close-button" data-close aria-label="Close reveal" type="button">
    <span aria-hidden="true">&times;</span>
  </button>
</div>

谁能指出我正确的方向?

4

1 回答 1

0

我不确定这是否是您想要的效果,但是您可以通过添加data-close到启动第二个模式的按钮来强制关闭第一个模式:

<a class="button" data-close data-open="exampleModal3">Click me for another modal!</a>

JSFiddle 示例

于 2016-06-14T13:37:24.293 回答