大家好,你能帮我在这里编辑代码吗?我希望效果是可点击的,而不是悬停效果。
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 类,但这并不能解决问题。