gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 07:02:40 25 4
gpt4 key购买 nike

我正在使用 isotope masonry gallery,但发现很难去除行之间的顶部/底部间隙(见图)

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 它会处理它但是由于图像的高度会变化我似乎无法将它紧紧地包裹在其中的图像上。任何关于我如何做到这一点的建议 height: auto 只给我留下我已经拥有的东西

最佳答案

你可能需要配合使用imagesloaded插件,masonry可以先判断加载图片的高度,然后再调整位置。

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

关于jquery - 如何从同位素砌体中去除顶部/底部边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33141111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com