私はレールにルビーを使用していますが、フロントエンドに問題があります。私は最近、フォームJQuery石積みを同位体に切り替えました。石工では、私のモデル(ピースと呼ばれる)が正しくセンタリングされ、アニメーション化されていました。さて、アイソトープでは、アニメーションは機能していますが、ページの中央ではなく、サイドに向かって起こっています。これをどうすれば解決できますか?アイソトープがセンタリングしていません
更新:石造コード
これはセンタリングのみ(pieces.jsに)メーソンリーを用いて、作業に使用されたコードです。私はこのレールの宝石から同位体をロードしています:https://github.com/kristianmandrup/masonry-rails。サイトはhttps://www.metallicpalette.com/piecesで閲覧できます。
$(function() {
return $('#pieces').imagesLoaded(function() {
return $('#pieces').masonry({
itemSelector: '.box',
isFitWidth: true
});
});
});
pieces.js
$(function() {
$('#pieces').imagesLoaded(function() {
var $grid = $('#pieces').isotope({
itemSelector: '.box',
isFitWidth: true,
getSortData: {
title: function(itemElem) {
var title = $(itemElem).find('.title').text();
return title;
},
price: function(itemElem) {
var rawPrice = $(itemElem).find('.price').text();
var price = parseFloat(rawPrice.replace(/[$\s]/g, ''));
return price;
}
}
});
$('.filter-button-group').on('click', 'a', function() {
var filterValue = $(this).attr('data-filter');
$grid.isotope({ filter: filterValue });
});
$('.sort-by-button-group').on('click', 'a', function() {
var sortByValue = $(this).data('sort-by');
if (sortByValue) {
var ascending = true;
if ($(this).data('descending') === true) {
ascending = false;
}
$grid.isotope({ sortBy: sortByValue, sortAscending: ascending });
}
});
});
});
index.html.erb(メインページ)
<div class="button-group center" role="group" aria-label="Filter and Sort">
<!-- Sort stuff, this all works -->
</div>
<div id="pieces" class="transitions-enabled">
<% @pieces.each do |piece| %>
<div class="box panel panel-default <%= piece.genre %>">
<!-- piece content -->
</div>
<% end %>
</div>
pieces.scss
#pieces {
margin: 0 auto;
}
.box {
margin: 5px;
width: 214px;
}
.box img {
width: 100%;
}
.panel-default .panel-heading img {
width: 100%;
}
.isotope,
.isotope .isotope-item {
/* change duration value to whatever you like */
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
これは私のために動作しません。別の考えがありますか?サイトは[このリンク](https://www.metallicpalette.com/pieces/)に掲載されています。また、私は、アイソトープのバージョン1を使用しているとは思わない。なぜなら、cssがなければ、遷移は機能しないからだ。 –
あなたは同位体の最初のバージョンを使用しています。どこにでもあなたのページにこのコードが含まれているわけではありません。 isfitWidthを使用できるようにするには、少なくともv2を使用します。 – Macsupport
「このコードはどこのページにも表示されません」という意味はどうですか?また、それは石積みで前に働いた - 私はあなたの方法を示すために私の質問を更新します。助けがあれば、このレールの宝石からアイソトープと石積みの両方をロードしています:https://github.com/kristianmandrup/masonry-rails –