11

在目录网站上使用 Masonry。默认情况下,显示的项目按日期排序,然后按部件号排序。我的图像高度不同。问题是,如果我错了,请纠正我,Masonry 将第 2 行第 1 项设置在第 1 行中最短项目的下方,而不是在页面左侧。所以换句话说,当我的数据库返回某个顺序时,Masonry 将这些项目从上到下(当高度不同时)放置,而不是从左到右。

我在文档中找不到任何东西来控制这一点。有没有办法强制砌体保持物品从左到右的顺序并根据高度垂直浮动?

我试图发布插图,但显然我没有资格这样做。这是插图的链接:

在此处输入图像描述

4

6 回答 6

4

受到比利的回答的启发(因此受到 skobaljic 的回答:))我只是改变了 shortColIndex 和 minimumY 的初始化来实现这种行为。可能会更容易一些 - 使用 colGroup 的大小 - 具有不同列数的响应式布局仍然有效。

这是 v3.3.2 的完整代码:

Masonry.prototype._getItemLayoutPosition = function( item ) {
  item.getSize();
  // how many columns does this brick span
  var remainder = item.size.outerWidth % this.columnWidth;
  var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
  // round if off by 1 pixel, otherwise use ceil
  var colSpan = Math[ mathMethod ]( item.size.outerWidth / this.columnWidth );
  colSpan = Math.min( colSpan, this.cols );

  var colGroup = this._getColGroup( colSpan );
  // ### HACK: sort by natural order, not by min col height
  // get the minimum Y value from the columns
  // var minimumY = Math.min.apply( Math, colGroup );
  // var shortColIndex = utils.indexOf( colGroup, minimumY );
  var shortColIndex = jQuery(item.element).index() % colGroup.length;
  var minimumY = colGroup[shortColIndex];

  // position the brick
  var position = {
    x: this.columnWidth * shortColIndex,
    y: minimumY
  };

  // apply setHeight to necessary columns
  var setHeight = minimumY + item.size.outerHeight;
  var setSpan = this.cols + 1 - colGroup.length;
  for ( var i = 0; i < setSpan; i++ ) {
    this.colYs[ shortColIndex + i ] = setHeight;
  }

  return position;
};
于 2015-10-23T15:07:38.833 回答
3

Masonry 中没有对物品进行排序的选项,因为它是一个简单的插件,可以一一放置砖块。选择新砖的位置很简单:尽可能把它放在更高的位置。

但是在这种情况下可以做的是通过添加定义排序的两行来更改脚本,假设所有砖的宽度相同(例如,总是5行)。

为了证明这一点,我使用了 jQuery Masonry(被压缩),你可以在这个 Fiddle中查看它。

JS

$.Mason.prototype._placeBrick = function(e) {
    var n = $(e),
        r, i, s, o, u;
    r = Math.ceil(n.outerWidth(!0) / this.columnWidth), r = Math.min(r, this.cols);
    if (r === 1) s = this.colYs;
    else {
        i = this.cols + 1 - r, s = [];
        for (u = 0; u < i; u++) o = this.colYs.slice(u, u + r), s[u] = Math.max.apply(Math, o)
    }
    var a = Math.min.apply(Math, s),
        f = 0;
    for (var l = 0, c = s.length; l < c; l++)
        if (s[l] === a) {
            f = l;
            break
        }
    /* Add new calculation, what column next brick is in: */
    f = $(e).index() % this.cols; /* Get col index f: Just divide with element's index */
    a = s[f]; /* This is current height for f-th column */
    /* END of customizing */
    var h = {
        top: a + this.offset.y
    };
    h[this.horizontalDirection] = this.columnWidth * f + this.offset.x, this.styleQueue.push({
        $el: n,
        style: h
    });
    var p = a + n.outerHeight(!0),
        d = this.cols + 1 - c;
    for (l = 0; l < d; l++) this.colYs[f + l] = p;
};
于 2014-11-11T21:57:16.713 回答
0

简单回答是不”

砌体几乎按照定义重新排列事物以适应并假设顺序并不重要。我说“几乎”是因为我认为您是对的,文档中的任何地方都没有说明这一点——但这就是它的工作原理。

于 2013-07-30T03:40:26.740 回答
0

看看 Masonry Ordered。我没有对此进行测试,但看起来它可能是您正在寻找的解决方案:http: //masonry-ordered.tasuki.org/options/

于 2014-01-03T11:38:48.060 回答
0

skobaljic 的回答(仅与 Masonry v2 兼容)的启发,我破解了 v3 来做同样的事情。这里是:

Masonry.prototype._getItemLayoutPosition = function( item ) { // Hack Masonry to order items by their order in the DOM
    item.getSize();
    // how many columns does this brick span
    var remainder = item.size.outerWidth % this.columnWidth;
    var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
    // round if off by 1 pixel, otherwise use ceil
    var colSpan = Math[ mathMethod ]( item.size.outerWidth / this.columnWidth );
    colSpan = Math.min( colSpan, this.cols );

    var col = $(item.element).index() % 3; // HACK : determine which column we want based on the element's index in the DOM

    var colGroup = this._getColGroup( colSpan );
    colGroup = [this.colYs[ col ]]; // HACK : return only the column we want
    // get the minimum Y value from the columns
    var minimumY = Math.min.apply( Math, colGroup );
    var shortColIndex = col; // HACK

    // position the brick
    var position = {
      x: this.columnWidth * shortColIndex,
      y: minimumY
    };

    // apply setHeight to necessary columns
    var setHeight = minimumY + item.size.outerHeight;
    this.colYs[ shortColIndex ] = setHeight; // HACK : set height only on the column we used

    return position;
};

希望这可以帮助某人

于 2015-07-29T10:45:10.280 回答
0

我通过用 isotope.js 替换 masonry.js 解决了这个问题。因为它有水平对齐选项。我就是这样做的——

将类“horizo​​ntal-order-class”添加到具有类行的 div。

<div class="row horizontal-order-class">
 <div class="col-lg-4 col-md-6 mb-25 ">...</div>
 ---
</div>

然后只需在添加 isotope.js 后在页脚的脚本标记中添加以下代码即可。

$('.horizontal-order-class').isotope({
            itemSelector: ".col-lg-4, .col-md-6", //the next div or the column elements that need to be arranged
            masonry: {
                horizontalOrder: true, //setting horizontal order as true, by default it will  be false.
            }
        });
于 2021-08-30T05:21:02.917 回答