Foundation 6 Nested Reveal并不尊重multipleOpened

时间:2016-06-14 08:46:55

标签: zurb-foundation zurb-reveal

我在使用带有Angular2的Foundation 6时,我有几个Reveal模态,需要按顺序打开。我直接从Zurb复制了这个例子,但是当我点击第一个模态中的按钮时,新模态打开,第一个模式没有关闭。

multipleOpened的默认值应为false,但它们只是相互打开。

Screenshot

我已尝试设置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>

有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:0)

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

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

JSFiddle example