こんにちは皆さん、ここでコードを編集するのを手伝ってくれませんか。ホバー効果ではなく、効果をクリック可能にしたい。
http://isotope.metafizzy.co/custom-layout-modes/masonry-column-shift.html
これは現在のコードです:
$container.find('.shifty-item').hover(
function() {
$(this).css({ height: "+=100" });
// note that element is passed in, not jQuery object
$container.isotope( 'shiftColumnOfItem', this );
},
function() {
$(this).css({ height: "-=100" });
$container.isotope( 'shiftColumnOfItem', this );
}
);
bind.('click', function) を使用しようとしましたが、機能しません。また、CSS クラスを追加しようとしましたが、それでも問題は解決しません。