重複の可能性:
DIV を DIV の中央に配置する方法は?
以下の画像をご覧ください。
赤いコンテナ div 内で灰色の正方形を水平方向に中央揃えにするにはどうすればよいですか? これはすべて同位体で作られているので、その点には注意してください。
前もって感謝します。
親 (赤) の div が常に中央に配置されていても、灰色の小さいものはそうではありません。上の画像では、それらが 1 つの列に配置されている場合、その列はラッパー (赤) div のちょうど真ん中にあるはずです。
重複の可能性:
DIV を DIV の中央に配置する方法は?
以下の画像をご覧ください。
赤いコンテナ div 内で灰色の正方形を水平方向に中央揃えにするにはどうすればよいですか? これはすべて同位体で作られているので、その点には注意してください。
前もって感謝します。
親 (赤) の div が常に中央に配置されていても、灰色の小さいものはそうではありません。上の画像では、それらが 1 つの列に配置されている場合、その列はラッパー (赤) div のちょうど真ん中にあるはずです。
実際、Isotope のセンタリングを実装するのは非常に簡単です (デスクトップ デバイスだけでなく、モバイル タッチ デバイスでも見栄えを良くするためにこれを行うサイトが完成しました)。このブロックの最後にある通常の Isotope コードの前に、 David DeSandro のリポジトリからこのコードを少しだけ含めます。
<!-- centered layout extension http://isotope.metafizzy.co/ -->
<script type="text/javascript">
$.Isotope.prototype._getCenteredMasonryColumns = function() {
this.width = this.element.width();
var parentWidth = this.element.parent().width();
var colW = this.options.masonry && this.options.masonry.columnWidth || // i.e. options.masonry && options.masonry.columnWidth
this.$filteredAtoms.outerWidth(true) || // or use the size of the first item
parentWidth; // if there's no items, use size of container
var cols = Math.floor(parentWidth / colW);
cols = Math.max(cols, 1);
this.masonry.cols = cols; // i.e. this.masonry.cols = ....
this.masonry.columnWidth = colW; // i.e. this.masonry.columnWidth = ...
};
$.Isotope.prototype._masonryReset = function() {
this.masonry = {}; // layout-specific props
this._getCenteredMasonryColumns(); // FIXME shouldn't have to call this again
var i = this.masonry.cols;
this.masonry.colYs = [];
while (i--) {
this.masonry.colYs.push(0);
}
};
$.Isotope.prototype._masonryResizeChanged = function() {
var prevColCount = this.masonry.cols;
this._getCenteredMasonryColumns(); // get updated colCount
return (this.masonry.cols !== prevColCount);
};
$.Isotope.prototype._masonryGetContainerSize = function() {
var unusedCols = 0,
i = this.masonry.cols;
while (--i) { // count unused columns
if (this.masonry.colYs[i] !== 0) {
break;
}
unusedCols++;
}
return {
height: Math.max.apply(Math, this.masonry.colYs),
width: (this.masonry.cols - unusedCols) * this.masonry.columnWidth // fit container to columns that have been used;
};
};
</script>
そして、いつものようにアイソトープを設定するだけです
<script type="text/javascript">
$(function() {
var $container = $('#container');
// the usual stuff for layouting, sorting, filtering, limiting clicks to zones...
</script>
最も簡単な解決策が見つかりました。Isotope 内で「組積造」レイアウトを使用します。
$container.isotope({
itemSelector: '.pbox',
layoutMode: 'masonry',
masonry: {
isFitWidth: true
}
});