同位素/砌体角印章

时间:2012-08-06 17:57:02

标签: jquery-isotope

我正在尝试添加一个角标记,但是没有正确显示,我认为js代码存在问题。

这是官方演示Masonry Corner Stamp

这是我将其添加到Website

的地方

这是JS File

我尝试在文件中的JS代码之上添加以下代码,但它仍然无效..

  $.Isotope.prototype._masonryResizeChanged = function() {
    return true;
  };

  $.Isotope.prototype._masonryReset = function() {
    // layout-specific props
    this.masonry = {};
    this._getSegments();
    var i = this.masonry.cols;
    this.masonry.colYs = [];
    while (i--) {
      this.masonry.colYs.push( 0 );
    }

    if ( this.options.masonry.cornerStampSelector ) {
      var $cornerStamp = this.element.find( this.options.masonry.cornerStampSelector ),
          stampWidth = $cornerStamp.outerWidth(true) - ( this.element.width() % this.masonry.columnWidth ),
          cornerCols = Math.ceil( stampWidth / this.masonry.columnWidth ),
          cornerStampHeight = $cornerStamp.outerHeight(true);
      for ( i = Math.max( this.masonry.cols - cornerCols, cornerCols ); i < this.masonry.cols; i++ ) {
        this.masonry.colYs[i] = cornerStampHeight;
      }
    }
  };

Screenshot

感谢任何帮助

1 个答案:

答案 0 :(得分:2)

作者提供的

This version here(过滤为附加奖励)通常有效。