簡體   English   中英

如何更改此燈箱#lightbox2 的默認圖像大小?

[英]How can I change the default image size of this lightbox #lightbox2?

我正在嘗試建立一個畫廊網站,我正在使用這個人的 lightbox2: https://lokeshdhakar.com/projects/lightbox2/

有人可以告訴我,我可以在哪里更改默認圖像大小? 我想要全屏尺寸的圖片。 默認圖像尺寸太小。

JS:我不能發布整個 JS 代碼,因為它太大了,我不知道它是哪一部分。 但是你可以在這里找到 JS 代碼: https://github.com/lokesh/lightbox2/blob/dev/dist/js/lightbox-plus-jquery.min.js

CSS:

.lb-loader,
.lightbox {
    text-align: center;
    line-height: 0;
    position: absolute;
    left: 0
 }

 body.lb-disable-scrolling {
    overflow: hidden
 }

 .lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(Opacity=80);
    opacity: .8;
    display: none
 }

.lightbox {
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0
 }

 .lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;

    border: 4px solid #fff
 }

 .lightbox a img {
    border: none
 }

 .lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
  }

.lb-outerContainer:after {
   content: "";
   display: table;
   clear: both
 }

.lb-loader {
   top: 43%;
   height: 25%;
   width: 100%
}


.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
 }

.lb-dataContainer:after {
    content: "";
    display: table;
    clear: both
 }

.lb-data {
    padding: 0 4px;
    color: #ccc
 }

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em 
 }

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 700;
    line-height: 1em
 }

如果您將選項更改為fitImagesInViewport:true選項會在這里

還是根據容器的大小更改 css 以具有響應式 img?

img{
width: 100%;
height: auto;
}
.image-container{
 width: 100vw;
 height: 100%;
}

html

 <div class="image-container">
    <img src="https://picsum.photos/id/1025/200/300" />
 </div>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM