如何从同位素砌体中去除顶部/底部边缘

时间:2015-10-15 06:12:04

标签: jquery css jquery-isotope jquery-masonry

我正在使用同位素砌体画廊,但发现难以去除行之间的顶部/底部间隙(见图)

the same gap is below all images including tall ones so the next row is pushed down even more

我该如何解决这个问题?

我正在使用的代码基于以下内容: http://simbyone.com/animated-masonry-gallery-with-filters/

如前所述,我直接使用上面那个网址的代码,包括javascript和css。图像的html是使用php创建的,但输出如下:

    <div id="gallery-content">
    <div id="gallery-content-center">
                        <div class='wrapper suggestion all film any later' id='3'>
                            <span class='relevance'>
                                <span class='badge'>87%</span>

                            </span>
                                <img src='cabinet/item/img/3.jpg' class='all film any later' alt='Film 1'/>
                            <span class='text'><i class='fa fa-check-circle-o btn-icon up'></i> <i class='fa fa-times-circle-o btn-icon down'></i> <i class='fa fa-heart-o btn-icon fav'></i><br>Film 1 later</span>
                        </div></div></div>

我也在图片上使用悬停文字:

        .wrapper img {
        filter: grayscale(100%);
        -webkit-filter: grayscale(100%);  /* For Webkit browsers */
        filter: gray;  /* For IE 6 - 9 */
        -webkit-transition: all .6s ease;  /* Transition for Webkit browsers */
    }

    .wrapper img:hover {
        filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
        filter: none;
    }

    .wrapper .text {
        position:relative;
        bottom:65px;
        left:10px;
        width: 150px;
        overflow: visible;
        visibility:hidden;
        color: #fff;
        font-size: 20px;
    }

    .wrapper:hover .text {
        visibility:visible;
    }

    .wrapper .relevance {
        position:relative;
        top:30px;
        left:250px;
        visibility:hidden;
        color: #a9a9a9;
        z-index: 99999;
    }

    .wrapper:hover .relevance {
        visibility:visible;
    }

    .wrapper .relevance .badge {
        font-size: 16px;
        background-color: #333;
    }

编辑: 似乎如果我将一个高度应用于.wrapper它会处理它,但是当图像的高度变化时,我似乎无法将其紧紧地包裹在其中的图像中。任何建议我如何做到这一点作为高度:汽车只是留给我我已经

2 个答案:

答案 0 :(得分:0)

我找到了一个解决方法虽然我不是百分之百,如果它是要走的路但是我添加了底边:-25%到所有图像并且它似乎已经完成了诀窍。可能不适合所有情况,但时间会告诉

#gallery-content-center img {
  width: 100%;
  height: auto;
  margin-bottom: -25%;
}

答案 1 :(得分:0)

您可能需要将imagesloaded插件与之配合使用,以便砌体可以先判断已加载图像的高度,然后再调整位置。

请参阅https://masonry.desandro.com/layout.html#imagesloaded