Foundation 6 Nested Reveal 不尊重 multipleOpened
Foundation 6 Nested Reveal doesn't respect multipleOpened
我将 Foundation 6 与 Angular2 结合使用,并且我有几个需要按顺序打开的 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">×</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">×</span>
</button>
</div>
谁能给我指出正确的方向?
我不确定这是否是您想要的效果,但您可以通过将 data-close
添加到启动第二个模式的按钮来强制关闭第一个模式:
<a class="button" data-close data-open="exampleModal3">Click me for another modal!</a>
我将 Foundation 6 与 Angular2 结合使用,并且我有几个需要按顺序打开的 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">×</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">×</span>
</button>
</div>
谁能给我指出正确的方向?
我不确定这是否是您想要的效果,但您可以通过将 data-close
添加到启动第二个模式的按钮来强制关闭第一个模式:
<a class="button" data-close data-open="exampleModal3">Click me for another modal!</a>