html css bootstrap 的小项目(灯箱)

small project with html css bootstrap (lightbox)

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="js/bootstrap.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
    <script src="js/main.js"></script>
    <script src="js/ekko-lightbox.js"></script>
    <script src="js/bootstrap.js"></script>
    <script>
     $(document).delegate('*[data-toggle="lightbox"]', 'click', function(event) {
    event.preventDefault();
    $(this).ekkoLightbox();
}); 
     $(function () {
  $('[data-hover="tooltip"]').tooltip()
})
    </script>

大家好,我正在用 bootstrap(灯箱)做一个小项目,我希望我的图片在我点击它后大小相同,即使它们的尺寸都不同。下面是 html&css 代码谢谢...

.photos{
 margin: 0;
 padding: 0;
}

.photos li{
 list-style: none;
 float: left;
 margin: 5px;
 width: 23%;
}

.photos img{
 width: 100%;
}
<section>
   <section id="clients" class="content-section text-center">
      <div class="container">
        <h2>My gallery</h2>
            <ul class="photos gallery-parent">
<li><a href="img/intro-bggg.jpg" data-title="Baha’i Gardens" data-footer="Hanging Baha’i Gardens and Golden Dome (Haifa)"  data-toggle="lightbox" data-gallery="My gallery" data-parent=".gallery-parent"data-hover="tooltip" data-placement="top" title="Baha’i Gardens" ><img src="img/intro-bggg.jpg" class="img-thumbnail"></a></li>

<li><a href="img/bahais sad.jpg" data-title="bahais sad" data-footer="bahais sad"  data-toggle="lightbox" data-gallery="My gallery" data-parent=".gallery-parent" data-hover="tooltip" data-placement="top" title="bahais sad" ><img src="img/bahais sad.jpg" class="img-thumbnail"></a></li>
             </ul>
   </div>
</section>

您试过CSS指定图片的固定宽度吗?标签将是 select 您打开的图像。示例:

Url: http://www.jasonbutz.info/bootstrap-lightbox/

#demoLightbox img {
width: 500px ;
}