Jquery Masonry高度问题
我有一个简单的砖石网格。当它加载时,.content
类是可见的。当您重新加载时,项目会相互流动。
这只发生在 Chrome 和 Safari 中,在 Firefox 中看起来不错。
这是网格中的 css:
#media_list {}
#media_list .media_item { height: auto; width: 270px; display: inline-block; background: #f4f4f4; border: 1px solid #d9d7d5; float: left; padding: 10px 0px 10px 0px; font: 11px Helvetica Neue; }
#media_list .media_item .date { color: white; background: #2f343a; padding: 10px 5px; width: 260px; float: left; margin: 0px 0px 15px 0px;}
#media_list .media_item .content { padding: 15px; float: left; display: inline-block; margin-bottom: 20px; }
#media_list .media_item img { border: 1px solid #dedddd; margin: 0px 0px 10px 10px; width: 248px;}
这就是砌体的调用方式:
$('#media_list').masonry({ // options
itemSelector : '.media_item',
columnWidth : 300
});
我可以使用 min-height
和 margin
来解决它,但这不是动态的,也不会看起来很干净。
这是 a JS Fiddle 但它并没有真正复制问题。
I have a simple masonry grid. When it loads the .content
class is visible. When you reload the items flow in to each other.
This only happen in Chrome and Safari, in Firefox it looks good.
Here is the css from the grid:
#media_list {}
#media_list .media_item { height: auto; width: 270px; display: inline-block; background: #f4f4f4; border: 1px solid #d9d7d5; float: left; padding: 10px 0px 10px 0px; font: 11px Helvetica Neue; }
#media_list .media_item .date { color: white; background: #2f343a; padding: 10px 5px; width: 260px; float: left; margin: 0px 0px 15px 0px;}
#media_list .media_item .content { padding: 15px; float: left; display: inline-block; margin-bottom: 20px; }
#media_list .media_item img { border: 1px solid #dedddd; margin: 0px 0px 10px 10px; width: 248px;}
This is how masonry is called:
$('#media_list').masonry({ // options
itemSelector : '.media_item',
columnWidth : 300
});
I can work around it with min-height
s and margin
s but that's not dynamic and doesn't look very clean.
Here is a JS Fiddle but it doesnt really replicate the issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来您已经使用了重新加载。
也许是因为图像在 URL 刷新时重新加载,而不是在重新加载时重新加载。
尝试:
否则
Seems you already use the reload.
Maybe its because the images reload on URL refresh and not on reload.
Try:
otherwise
例如,为了更好地兼容 Google Chrome,请更改
为
For a better compatibility with Google Chrome for example, change
to