我想创建一个具有等高框响应的画廊网格滑块。
示例 650px 宽及以上 3 列和 2 行。
550px 宽及以下 2 列和 3 行。
450 像素宽且低于 1 列和 1 行。
我现在一直在使用这个 jQuery 插件https://github.com/liabru/jquery-match-height。
我可以将它与其他插件滑块一起使用还是有其他选择?
(function() {
/* matchHeight example */
$(function() {
// apply your matchHeight on DOM ready (they will be automatically re-applied on load or resize)
var byRow = $('.item-wrapper').hasClass('match-rows');
// apply matchHeight to each item container's items
$('.item-container').each(function() {
$(this).children('.item-query').matchHeight({
byRow: byRow
});
});
});
})();