あなたの問題は、このコードのセグメントである:
if (jQuery(this).parents('.portelement').hasClass("large")) {
jQuery(this).parents('.portelement').animate({
height: _this.defaultBlockHeight + 20 + 2*param_obj.portfolio_gallery_ht_view0_element_border_width+param_obj.portfolio_gallery_ht_view0_title_font_size
}, 300, function() {
jQuery(this).removeClass('large');
portfolioGalleryIsotope(_this.container,'reLayout');
});
_this.element.removeClass("active");
return false;
}
代わりの高さを設定しますバック240ピクセルにあなたがイメージの幅を使用して起因するあなたに一部で、私はこれを考えて197にそれを設定している、297
であなたの関数、であなたは
この行を変更することで、高さを手動に設定することができます
height: _this.defaultBlockHeight + 20 + 2*param_obj.portfolio_gallery_ht_view0_element_border_width+param_obj.portfolio_gallery_ht_view0_title_font_size
この
height: 240
から
か、正しいパラメータを使用するように機能を書き換えることができます。
あなたは素晴らしいです!それはうまくいった。ありがとう! –