0

私は最も簡単にすることはできませんBootstrap-Image-Gallery example work。ブートストラップイメージギャラリーにはフルイメージが表示されません

<!DOCTYPE HTML> 
<head> 
    <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"> 
    <link rel="stylesheet" href="bower_components/blueimp-gallery/css/blueimp-gallery.min.css"> 
    <link rel="stylesheet" href="bower_components/Bootstrap-Image-Gallery/css/bootstrap-image-gallery.min.css"> 
</head> 
<body> 
    <!-- The Bootstrap Image Gallery lightbox, should be a child element of the document body --> 
    <div id="blueimp-gallery" class="blueimp-gallery"> 
     <!-- The container for the modal slides --> 
     <div class="slides"></div> 
     <!-- Controls for the borderless lightbox --> 
     <h3 class="title"></h3> 
     <a class="prev">‹</a> 
     <a class="next">›</a> 
     <a class="close">×</a> 
     <a class="play-pause"></a> 
     <ol class="indicator"></ol> 
     <!-- The modal dialog, which will be used to wrap the lightbox content --> 
     <div class="modal fade"> 
      <div class="modal-dialog"> 
       <div class="modal-content"> 
        <div class="modal-header"> 
         <button type="button" class="close" aria-hidden="true">&times;</button> 
         <h4 class="modal-title"></h4> 
        </div> 
        <div class="modal-body next"></div> 
        <div class="modal-footer"> 
         <button type="button" class="btn btn-default pull-left prev"> 
          <i class="glyphicon glyphicon-chevron-left"></i> 
          Previous 
         </button> 
         <button type="button" class="btn btn-primary next"> 
          Next 
          <i class="glyphicon glyphicon-chevron-right"></i> 
         </button> 
        </div> 
       </div> 
      </div> 
     </div> 
    </div> 
    <div id="links"> 
     <a href="images/banana.jpg" title="Banana" data-gallery> 
      <img src="images/thumb.jpg" alt="Banana"> 
     </a> 
    </div> 
    <script src="bower_components/jquery/dist/jquery.min.js"></script> 
    <script src="bower_components/blueimp-gallery/js/jquery.blueimp-gallery.min.js"></script> 
    <script src="bower_components/Bootstrap-Image-Gallery/js/bootstrap-image-gallery.min.js"></script> 
</body> 

それはバナナのサムネイル画像を示すが、私はそれをクリックすると、ページが黒くなり、何も起こりません:

は、私は自分のサイトから以下のHTMLを持っています。

なぜですか?私は間違って何をしていますか?

すべてprerequesitiesは満足しませんでした:

コンソールでエラーなし。

+0

代わりにスクリプトを頭に入れてみましたか? –

+0

また、githubには、blueimpv2.16.0が必要とされています。それが追加されましたか? –

+0

@ Kode.Error404はい、ギャラリー2.21.3を使用しています – FrozenHeart

答えて

0

ああ、ブートストラップイメージギャラリー(またはギャラリー自体)はjQuery 3.1.0で動作しないようです。

jQuery 1.11.3は期待どおりに動作します。

関連する問題