1

检查此站点并单击屏幕中间的查看按钮

当您单击查看按钮时,图像彼此重叠。

然后,如果您重新调整浏览器大小,它将根据我们的需要自动设置。

我们已尝试使用以下视图按钮单击重新加载

$('#menu').click(function() {
    $('.primary-content').masonry('reload'); /* not working */
    $("#cont").show();
    alert ( "abc" );
    $('#test').animate({
        height: 'toggle'        
    }, 500, function() {});
});
4

1 回答 1

0

工作链接(问题解决链接)http://www.ytank.com/tourapp/swipe/demosnew/ss02.html

参考链接https://github.com/desandro/masonry/issues/211

在使用 Masonry 方法之前需要初始化 Masonry。

$('.hero-masonry')
  // initialize Masonry
  .masonry()
于 2014-05-09T13:01:17.380 回答