我正在将弹性网格插件用于站点上的网格显示系统,但我希望能够简单地单击展开的视图并自动关闭,而无需按照插件的建议单击缩略图或“x”按钮.
我浏览了一下代码,认为这是我需要编辑的地方
function initEvents() {
//when clicking an item, show the preview with the items info and larg image;
//close the item if already expanded.
//also close if clicking on the item's cross
$items.on( 'click', function(e) {
hidePreview();
return false;
} ).children( 'a' ).on( 'click', function(e) {
var $item = $( this ).parent();
//check if item already opened
current === $item.index() ? hidePreview() : showPreview( $item );
return false;
});
但是,我不确定该怎么做。我试图实现这里提到的这种方法,但没有运气。对此的任何指导将不胜感激。