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