Justified Gallery销毁函数(JQuery)

时间:2014-11-12 07:47:42

标签: jquery css gallery image-gallery

我有一个问题,我该如何关闭" Justified Gallery"由width?在我的网络的右侧它工作得很好(min-width:1300px),但随后我的css媒体(max-width:1300px)改变了设计,我的画廊深入到一行。我需要它与我原来的CSS保持一致(关闭Justified Gallery)。我找不到这个选项。

min-width:1300px;时,合理的图库有用 max-width:1300px;

时,合理的画廊会全部销毁

在调整大小时,它必须重新开始工作。enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用enquire.js并销毁或停用图库插件。

enquire.register("screen and (max-width:1300px)", {
match : function() {
     // give your gallery destry function here
},      
unmatch : function() {}
  // init gallery function
});