Blueimp Gallery inside Modal with black screen

1

Follow the code below:

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <!-- The Gallery as inline carousel, can be positioned anywhere on the page -->
        <div id="blueimp-gallery-carousel" class="blueimp-gallery blueimp-gallery-carousel">
          <div class="slides"></div>
          <h3 class="title"></h3>
          <a class="prev">‹</a>
          <a class="next">›</a>
          <a class="play-pause"></a>
          <ol class="indicator"></ol>
        </div>
      </div>
      <div id="links" hidden>
        <a href="http://www.aprenderexcel.com.br//imagens/noticia/385/2901-1.jpg"></a>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

JS:

blueimp.Gallery(
  document.getElementById('links').getElementsByTagName('a'), {
    container: '#blueimp-gallery-carousel',
    carousel: true
  }
);

Follow JSFIddle: link

When I open modal, it is black.

Final result:

Any solution?

    
asked by anonymous 19.09.2017 / 02:35

1 answer

0

Problem solved,

Placing the following code:

$('#exampleModal').on('shown.bs.modal', function(e) {
  blueimp.Gallery(
    document.getElementById('links').getElementsByTagName('a'), {
      container: '#blueimp-gallery-carousel',
      carousel: true
    }
  );
})
    
19.09.2017 / 16:06